Skip to content

Commit

Permalink
Use black to reformat setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidan Delaney committed Jul 14, 2019
1 parent 8d1f216 commit ff67eed
Showing 1 changed file with 26 additions and 25 deletions.
51 changes: 26 additions & 25 deletions setup.py
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",
)

0 comments on commit ff67eed

Please sign in to comment.