-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.27 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup
from cucloud import __version__
requires = ['boto3>=1.2.0',
'python-dateutil>=2.1,<3.0.0']
setup_options = dict(
name='cucloud',
version=__version__,
description='Python Implementation of the Cornell Cloud Library Spec ',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=[
'aws',
'amazon web services',
'command line interface',
'cornell university',
'cloud agnostic'
],
author='Cornell University',
author_email='emg33@cornell.edu',
maintainer='Eric Grysko',
maintainer_email='emg33@cornell.edu',
url='https://github.com/CU-CloudCollab/cucloud_module',
packages=['cucloud','cucloud.aws', 'cucloud.azure'],
entry_points = {
'console_scripts': ['cucloud = cucloud.__main__:main'],
},
license='License :: Other/Proprietary License',
install_requires=requires,
zip_safe=False
)
setup(**setup_options)