-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 856 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
29
30
from setuptools import setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
setup(
name='tatsu.py',
version='1.1.0',
description="An async python API Wrapper for the Tatsu API.",
install_requires=[
'ratelimit~=2.2.1',
'httpx~=0.27.0'
],
license='MIT License',
long_description=(here / 'README.md').read_text(encoding='utf-8'),
long_description_content_type='text/markdown',
url="https://github.com/PumPum7/Tatsu.py",
author="Pum",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
keywords="api, tatsu, api wrapper",
packages=["tatsu"],
project_urls={
"Tatsu": "https://tatsu.gg/",
"Source": "https://github.com/PumPum7/Tatsu.py"
}
)