forked from smartsheet-platform/smartsheet-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 660 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(
name='smartsheetclient',
version='0.0.1',
author='Scott Wimer',
author_email='scott.wimer@smartsheet.com',
description='Client for interacting with the Smartsheet API',
license='Copyright Smartsheet, Inc. 2014, all rights reserved',
packages=[
'smartsheetclient',
'smartsheetclient.client_1_1',
],
package_dir={
'smartsheetclient': 'src/python/smartsheetclient',
'smartsheetclient.client_1_1':
'src/python/smartsheetclient/client_1_1',
},
install_requires=['httplib2']
)