Skip to content

Commit ff67eed

Browse files
author
Aidan Delaney
committed
Use black to reformat setup.py
1 parent 8d1f216 commit ff67eed

File tree

1 file changed

+26
-25
lines changed

1 file changed

+26
-25
lines changed

setup.py

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
11
from setuptools import setup
22

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-
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+
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

Comments
 (0)