-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
33 lines (32 loc) · 1.25 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
from setuptools import setup
setup(
name="genshinstats",
version="1.4.11.3",
author="thesadru",
packages=["genshinstats"],
description="A python library that can get the stats of Genshin Impact players using Mihoyo's API.",
keywords="api wrapper mihoyo genshin genshin-impact".split(),
python_requires=">=3.7",
url="https://github.com/thesadru/genshinstats",
project_urls={
"Documentation": "https://thesadru.github.io/pdoc/genshinstats/",
"Issue tracker": "https://github.com/thesadru/genshinstats/issues",
},
install_requires=["requests", "browser-cookie3"],
author_email="thesadru@gmail.com",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
],
)