|
1 | 1 | """
|
2 |
| -
|
| 2 | +AWS Lambda function to receive GitHub webhooks from API gateway and relay them to an EC2 instance |
3 | 3 | """
|
4 | 4 | from setuptools import find_packages, setup
|
5 | 5 |
|
|
9 | 9 | name='lambda-webhook',
|
10 | 10 | version='0.1.0',
|
11 | 11 | url='https://github.com/pristineio/lambda-webhook',
|
12 |
| - license='MIT', |
| 12 | + license='BSD', |
13 | 13 | author='John Schwinghammer',
|
14 |
| - |
15 |
| - description='', |
| 14 | + author_email='john+githubsource@pristine.io', |
| 15 | + description='AWS Lambda function to receive GitHub webhooks from API gateway and relay them to an EC2 instance', |
16 | 16 | long_description=__doc__,
|
17 | 17 | packages=find_packages(exclude=['tests']),
|
18 | 18 | include_package_data=True,
|
|
22 | 22 | classifiers=[
|
23 | 23 | # As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
24 | 24 | # 'Development Status :: 1 - Planning',
|
25 |
| - 'Development Status :: 2 - Pre-Alpha', |
| 25 | + # 'Development Status :: 2 - Pre-Alpha', |
26 | 26 | # 'Development Status :: 3 - Alpha',
|
27 |
| - # 'Development Status :: 4 - Beta', |
| 27 | + 'Development Status :: 4 - Beta', |
28 | 28 | # 'Development Status :: 5 - Production/Stable',
|
29 | 29 | # 'Development Status :: 6 - Mature',
|
30 | 30 | # 'Development Status :: 7 - Inactive',
|
31 |
| - 'Environment :: Console', |
32 |
| - 'Intended Audience :: System Administrators', |
33 |
| - 'License :: OSI Approved :: MIT License', |
34 |
| - 'Operating System :: POSIX', |
| 31 | + 'Environment :: Other Environment', |
| 32 | + 'Intended Audience :: Developers', |
| 33 | + 'License :: OSI Approved :: BSD License', |
| 34 | + 'Operating System :: POSIX :: Linux', |
35 | 35 | 'Operating System :: MacOS',
|
36 |
| - 'Operating System :: Unix', |
37 | 36 | 'Programming Language :: Python',
|
38 | 37 | 'Programming Language :: Python :: 2',
|
39 |
| - 'Topic :: Utilities', |
| 38 | + 'Topic :: Software Development :: Build Tools', |
40 | 39 | ]
|
41 | 40 | )
|
0 commit comments