Skip to content

Commit 56a04dc

Browse files
committed
Merge pull request #5 from irlrobot/add_to_setup_py
Add to setup .py
2 parents 8801ebb + ad18b77 commit 56a04dc

2 files changed

Lines changed: 23 additions & 1 deletion

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,7 @@ pprint(codepipeline.event)
2424
* s3_put
2525
* s3_delete
2626
* cloudwatch_logs
27+
28+
# References
29+
[AWS Lambda Event Sources](http://docs.aws.amazon.com/lambda/latest/dg/eventsources.html)
30+
[AWS ARNs](http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)

setup.py

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,31 @@
11
from setuptools import setup
22

3+
# Get the long description by reading the README
4+
try:
5+
readme_content = open("README.md").read()
6+
except:
7+
readme_content = ""
8+
39
setup(name='lambda_sample_events',
4-
version='0.1.0',
10+
version='1.0.0',
511
description='Python module for creating sample events to test AWS Lambda functions.',
12+
long_description=readme_content,
613
url='https://github.com/irlrobot/python_lambda_sample_events',
714
author='Josh Campbell',
815
author_email='josh@userdel.com',
16+
maintainer='Josh Campbell',
17+
maintainer_email='josh@userdel.com',
918
license='Apache 2.0',
19+
keywords=["aws", "lambda"],
1020
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+
],
1129
include_package_data=True,
1230
tests_require=['pytest'],
1331
zip_safe=False)

0 commit comments

Comments
 (0)