-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Aidan Delaney
committed
Jul 14, 2019
1 parent
8d1f216
commit ff67eed
Showing
1 changed file
with
26 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
from setuptools import setup | ||
|
||
setup(name="github-webhook", | ||
version="2.0.0", | ||
description="Very simple, but powerful, microframework for writing Github webhooks in Python", | ||
url="https://github.com/bloomberg/python-github-webhook", | ||
author="Alex Chamberlain, Fred Phillips, Daniel Kiss, Daniel Beer", | ||
author_email="[email protected], [email protected], [email protected], [email protected]", | ||
license='Apache 2.0', | ||
packages=["github_webhook"], | ||
install_requires=['flask==1.0.2'], | ||
tests_require=['mock', 'pytest', 'nose'], | ||
|
||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Framework :: Flask', | ||
'Environment :: Web Environment', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: POSIX', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Software Development :: Version Control' | ||
], | ||
test_suite='nose.collector') | ||
setup( | ||
name="github-webhook", | ||
version="2.0.0", | ||
description="Very simple, but powerful, microframework for writing Github webhooks in Python", | ||
url="https://github.com/bloomberg/python-github-webhook", | ||
author="Alex Chamberlain, Fred Phillips, Daniel Kiss, Daniel Beer", | ||
author_email="[email protected], [email protected], [email protected], [email protected]", | ||
license="Apache 2.0", | ||
packages=["github_webhook"], | ||
install_requires=["flask==1.0.2"], | ||
tests_require=["mock", "pytest", "nose"], | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Framework :: Flask", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Software Development :: Version Control", | ||
], | ||
test_suite="nose.collector", | ||
) |