forked from dearkafka/woot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.03 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
from setuptools import find_packages, setup
def long_description():
with open("README.md") as readme:
return readme.read()
setup(
name="woot",
version="0.1.0",
author="Aleksei Ushakov",
author_email="[email protected]",
description="Still simple Chatwoot API wrapper",
long_description=long_description(),
long_description_content_type="text/markdown",
packages=find_packages(),
license="Cooperative Non-Violent Public License v7 or later (CNPLv7+)",
project_urls={
"Bug Tracker": "https://github.com/dearkafka/woot/issues",
},
classifiers=[
"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=[
"httpx>=0.23.0",
"python-slugify",
"python-status",
"pydantic",
],
)