|
1 | 1 | from setuptools import setup, find_packages
|
2 | 2 |
|
3 |
| -LONG_DESCRIPTION = open('README.md').read() |
| 3 | +LONG_DESCRIPTION = open("README.md").read() |
4 | 4 |
|
5 |
| -setup(name='aws-dynamodb-parser', |
6 |
| - version='0.1', |
7 |
| - description='AWS DynamoDB utility for parsing DynamoDB responses', |
8 |
| - long_description=LONG_DESCRIPTION, |
9 |
| - long_description_content_type="text/markdown", |
10 |
| - url='https://github.com/gridsmartercities/aws-dynamodb-parser', |
11 |
| - author='Grid Smarter Cities', |
12 |
| - |
13 |
| - license='MIT', |
14 |
| - classifiers=['Intended Audience :: Developers', |
15 |
| - 'Development Status :: 3 - Alpha', |
16 |
| - 'Programming Language :: Python :: 3', |
17 |
| - 'License :: OSI Approved :: MIT License', |
18 |
| - 'Operating System :: OS Independent', |
19 |
| - 'Natural Language :: English' |
20 |
| - ], |
21 |
| - keywords='aws lambda decorator', |
22 |
| - packages=find_packages(exclude=('tests')), |
23 |
| - zip_safe=False |
24 |
| - ) |
| 5 | +setup( |
| 6 | + name="aws-dynamodb-parser", |
| 7 | + version="0.1.2", |
| 8 | + description="AWS DynamoDB utility for parsing DynamoDB responses", |
| 9 | + long_description=LONG_DESCRIPTION, |
| 10 | + long_description_content_type="text/markdown", |
| 11 | + url="https://github.com/gridsmartercities/aws-dynamodb-parser", |
| 12 | + author="Grid Smarter Cities", |
| 13 | + |
| 14 | + license="MIT", |
| 15 | + classifiers=[ |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "Development Status :: 3 - Alpha", |
| 18 | + "Programming Language :: Python :: 3", |
| 19 | + "License :: OSI Approved :: MIT License", |
| 20 | + "Operating System :: OS Independent", |
| 21 | + "Natural Language :: English" |
| 22 | + ], |
| 23 | + keywords="aws lambda decorator", |
| 24 | + packages=find_packages(exclude=("tests")), |
| 25 | + zip_safe=False |
| 26 | +) |
0 commit comments