-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
38 lines (34 loc) · 1.06 KB
/
setup.py
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
from distutils.core import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='export-dynamodb',
packages=['exportdynamodb', 'exportdynamodb.entrypoints'],
version='2.2.1',
description='A cli to export Amazon DynamoDb',
long_description=readme(),
long_description_content_type='text/markdown',
author='Truong Le',
author_email='[email protected]',
url='https://github.com/travistrle/export-dynamodb.git',
license='GPLv3',
download_url='https://github.com/travistrle/export-dynamodb/archive/2.2.1.tar.gz',
keywords=['aws', 'dynamodb', 'export'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Topic :: Database',
'Programming Language :: Python :: 3.6',
],
python_requires='>=3.6',
install_requires=[
'click==6.7',
'boto3==1.7.19'
],
entry_points={
'console_scripts': [
'export-dynamodb = exportdynamodb.__main__:main'
]
}
)