-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (27 loc) · 1004 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup
setup(
name="quart-github-webhook",
use_scm_version={
'local_scheme': 'dirty-tag',
},
description="Very simple, but powerful, microframework for writing Github webhooks in Python",
url="https://github.com/go-build-it/quart-github-webhook",
author="Jamie Bliss",
author_email="[email protected]",
license="Apache 2.0",
packages=["quart_github_webhook"],
install_requires=["quart"],
classifiers=[
"Development Status :: 4 - Beta",
# "Framework :: Quart",
"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",
],
)