forked from seriaati/genshin.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (42 loc) · 1.5 KB
/
setup.py
File metadata and controls
43 lines (42 loc) · 1.5 KB
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
"""Run setuptools."""
from setuptools import find_packages, setup
setup(
name="genshin",
version="1.6.2",
author="thesadru",
author_email="thesadru@gmail.com",
description="An API wrapper for Genshin Impact.",
keywords="hoyoverse mihoyo genshin genshin-impact honkai".split(),
url="https://github.com/thesadru/genshin.py",
project_urls={
"Documentation": "https://thesadru.github.io/genshin.py",
"Issue tracker": "https://github.com/thesadru/genshin.py/issues",
},
packages=find_packages(exclude=["tests.*"]),
python_requires=">=3.8",
install_requires=["aiohttp", "pydantic"],
extras_require={
"all": ["browser-cookie3", "rsa", "click"],
"cookies": ["browser-cookie3"],
"geetest": ["rsa"],
"cli": ["click"],
},
include_package_data=True,
package_data={"genshin": ["py.typed"]},
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
"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",
],
)