-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
74 lines (71 loc) · 2.62 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
from setuptools import setup
__author__ = "Alex Laird"
__copyright__ = "Copyright 2020, Alex Laird"
__version__ = "1.2.2"
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="hookee",
version=__version__,
packages=["hookee",
"hookee.plugins"],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
install_requires=[
"future",
"pluginbase",
"confuse",
"python-dotenv",
"flask",
"click",
"pyngrok>=4.1.12",
],
entry_points="""
[console_scripts]
hookee=hookee.cli:hookee
""",
include_package_data=True,
description="Command line webhooks, on demand.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Alex Laird",
author_email="[email protected]",
url="https://github.com/alexdlaird/hookee",
download_url="https://github.com/alexdlaird/hookee/archive/{}.tar.gz".format(__version__),
project_urls={
"Changelog": "https://github.com/alexdlaird/hookee/blob/master/CHANGELOG.md",
"Sponsor": "https://www.paypal.me/alexdlaird"
},
keywords=["python", "webhook", "ngrok", "flask"],
license="MIT",
classifiers=[
"Environment :: Console",
"Environment :: Web Environment",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet",
"Topic :: Internet :: Proxy Servers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)