|
1 | 1 | from setuptools import setup |
2 | 2 |
|
3 | | -setup(name="github-webhook", |
4 | | - version="2.0.0", |
5 | | - description="Very simple, but powerful, microframework for writing Github webhooks in Python", |
6 | | - url="https://github.com/bloomberg/python-github-webhook", |
7 | | - author="Alex Chamberlain, Fred Phillips, Daniel Kiss, Daniel Beer", |
8 | | - author_email="achamberlai9@bloomberg.net, fphillips7@bloomberg.net, dkiss1@bloomberg.net, dbeer1@bloomberg.net", |
9 | | - license='Apache 2.0', |
10 | | - packages=["github_webhook"], |
11 | | - install_requires=['flask==1.0.2'], |
12 | | - tests_require=['mock', 'pytest', 'nose'], |
13 | | - |
14 | | - classifiers=[ |
15 | | - 'Development Status :: 4 - Beta', |
16 | | - 'Framework :: Flask', |
17 | | - 'Environment :: Web Environment', |
18 | | - 'Intended Audience :: Developers', |
19 | | - 'Intended Audience :: System Administrators', |
20 | | - 'License :: OSI Approved :: Apache Software License', |
21 | | - 'Operating System :: MacOS :: MacOS X', |
22 | | - 'Operating System :: Microsoft :: Windows', |
23 | | - 'Operating System :: POSIX', |
24 | | - 'Programming Language :: Python :: 3', |
25 | | - 'Topic :: Software Development :: Version Control' |
26 | | - ], |
27 | | - test_suite='nose.collector') |
| 3 | +setup( |
| 4 | + name="github-webhook", |
| 5 | + version="2.0.0", |
| 6 | + description="Very simple, but powerful, microframework for writing Github webhooks in Python", |
| 7 | + url="https://github.com/bloomberg/python-github-webhook", |
| 8 | + author="Alex Chamberlain, Fred Phillips, Daniel Kiss, Daniel Beer", |
| 9 | + author_email="achamberlai9@bloomberg.net, fphillips7@bloomberg.net, dkiss1@bloomberg.net, dbeer1@bloomberg.net", |
| 10 | + license="Apache 2.0", |
| 11 | + packages=["github_webhook"], |
| 12 | + install_requires=["flask==1.0.2"], |
| 13 | + tests_require=["mock", "pytest", "nose"], |
| 14 | + classifiers=[ |
| 15 | + "Development Status :: 4 - Beta", |
| 16 | + "Framework :: Flask", |
| 17 | + "Environment :: Web Environment", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "Intended Audience :: System Administrators", |
| 20 | + "License :: OSI Approved :: Apache Software License", |
| 21 | + "Operating System :: MacOS :: MacOS X", |
| 22 | + "Operating System :: Microsoft :: Windows", |
| 23 | + "Operating System :: POSIX", |
| 24 | + "Programming Language :: Python :: 3", |
| 25 | + "Topic :: Software Development :: Version Control", |
| 26 | + ], |
| 27 | + test_suite="nose.collector", |
| 28 | +) |
0 commit comments