-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (21 loc) · 751 Bytes
/
setup.py
File metadata and controls
27 lines (21 loc) · 751 Bytes
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
from setuptools import setup
setup(
name='firstdown_cloud',
version='0.0.4',
url='https://github.com/OpsLabJPL/firstdown_cloud',
license='Apache 2.0',
author='Mark Powell',
author_email='Mark.W.Powell@jpl.nasa.gov',
description='Python library for securely publishing JPL ops summary data to Govcloud.',
long_description='Python library for securely publishing JPL ops summary data to Govcloud.',
packages=['firstdown_cloud'],
package_data={'firstdown_cloud': ['README.rst', 'LICENSE.txt']},
test_suite='tests',
install_requires=['pycrypto','boto3'],
tests_require=['moto==1.3.3'],
entry_points={
'console_scripts': [
'fds3 = firstdown_cloud.s3:main'
]
}
)