This repository has been archived by the owner on May 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
60 lines (51 loc) · 1.86 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
#!/usr/bin/env python
import sys
from os import path
from setuptools import setup, find_packages
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
install_requires = [
"wheel",
"python-dateutil>=2.8",
"aiohttp>=3.8",
"pytz",
"lor-deckcodes",
]
extras_require = {
"diskcache": ["diskcache>=5.1", "asgiref>=3.2"],
"redis": ["redis[hiredis]>=4.5.0"],
"mongodb": ["motor>=2.3"],
"test": ["typeguard>=2.13", "redis[hiredis]>=4.5.0", "motor>=2.3", "diskcache>=5.1", "asgiref>=3.2"],
}
# Require python 3.7
if sys.version_info < (3,7):
sys.exit("'Pyot' requires Python >= 3.7")
setup(
name="pyot",
version="6.0.9",
author="Jian Huang",
author_email="[email protected]",
url="https://github.com/iann838/Pyot",
description="AsyncIO-based high level Python framework Riot Games API framework that encourages rapid development and clean, pragmatic design.",
long_description=long_description,
long_description_content_type='text/markdown',
keywords=["Riot Games", "League of Legends", "Teamfight Tactics", "Valorant", "Legends of Runeterra", "API", "REST", "asyncio"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.7",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
],
license="MIT",
packages=find_packages(exclude=("test")),
zip_safe=True,
install_requires=install_requires,
extras_require=extras_require,
include_package_data=True,
)