-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (40 loc) · 1.26 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
from setuptools import setup, find_packages
def long_description():
with open("README.md") as readme:
return readme.read()
setup(
name="woothook",
version="0.0.1",
author="Aleksei Ushakov",
author_email="[email protected]",
description="Chatwoot webhook server template using woot",
long_description=long_description(),
long_description_content_type="text/markdown",
packages=["woothook"],
license="Cooperative Non-Violent Public License v7 or later (CNPLv7+)",
project_urls={
"Bug Tracker": "https://github.com/dearkafka/woothook/issues",
},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
include_package_data=True,
python_requires=">=3.6",
install_requires=[
"requests>=2.27.1",
"woot @ git+https://github.com/dearkafka/woot#egg=woot",
"typer",
"fastapi",
"uvicorn",
],
entry_points={ # Optional
"console_scripts": [
"woothook=woothook.service:app",
],
},
)