|
1 | 1 | from setuptools import setup |
2 | 2 |
|
| 3 | +# Get the long description by reading the README |
| 4 | +try: |
| 5 | + readme_content = open("README.md").read() |
| 6 | +except: |
| 7 | + readme_content = "" |
| 8 | + |
3 | 9 | setup(name='lambda_sample_events', |
4 | | - version='0.1.0', |
| 10 | + version='1.0.0', |
5 | 11 | description='Python module for creating sample events to test AWS Lambda functions.', |
| 12 | + long_description=readme_content, |
6 | 13 | url='https://github.com/irlrobot/python_lambda_sample_events', |
7 | 14 | author='Josh Campbell', |
8 | 15 | author_email='josh@userdel.com', |
| 16 | + maintainer='Josh Campbell', |
| 17 | + maintainer_email='josh@userdel.com', |
9 | 18 | license='Apache 2.0', |
| 19 | + keywords=["aws", "lambda"], |
10 | 20 | packages=['lambda_sample_events'], |
| 21 | + classifiers=[ |
| 22 | + "Development Status :: 5 - Production/Stable", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "License :: OSI Approved :: Apache Software License", |
| 25 | + "Operating System :: POSIX", |
| 26 | + "Programming Language :: Python", |
| 27 | + "Topic :: Software Development :: Libraries :: Python Modules" |
| 28 | + ], |
11 | 29 | include_package_data=True, |
12 | 30 | tests_require=['pytest'], |
13 | 31 | zip_safe=False) |
0 commit comments