-
Notifications
You must be signed in to change notification settings - Fork 288
/
setup.py
28 lines (26 loc) · 899 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="dynamodump",
version="1.10.0",
author="Benny Chew",
author_email="noreply@bennychew.com",
description="Simple backup and restore for Amazon DynamoDB using AWS SDK for Python (boto3)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bchew/dynamodump",
project_urls={
"Releases": "https://github.com/bchew/dynamodump/releases",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
packages=["dynamodump"],
python_requires=">=3.8",
install_requires=["boto3==1.35.31", "six==1.16.0"],
entry_points={
"console_scripts": ["dynamodump=dynamodump.dynamodump:main"],
},
)