forked from TeamKillerX/RyuzakiLib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
77 lines (72 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import os
import re
import setuptools
def read(fname, version=False):
text = open(os.path.join(os.path.dirname(__file__), fname), encoding="utf8").read()
if version:
return re.search(r'__version__ = "(.*?)"', text).group(1)
return text
setuptools.setup(
name="RyuzakiLib",
packages=setuptools.find_packages(),
version=read("RyuzakiLib/__version__.py", version=True),
license="MIT",
description="RyuzakiLib Python Wrapper For API etc",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="TeamKillerX",
author_email="[email protected]",
url="https://github.com/TeamKillerX/RyuzakiLib/",
keywords=["API", "RyuzakiLib", "Ryuzaki_Library", "Ryuzaki-API"],
install_requires=[
"requests",
"aiohttp",
"aiofiles",
"pyrogram",
"bs4",
"google-search-results",
"httpx[http2]",
"Python-IO",
"Pillow",
"openai",
"tqdm",
"pre-commit",
"gpytranslate",
"Flask",
"pymongo",
"pytz",
"urllib3",
"pydantic",
"typing-extensions",
"typing",
"deprecation",
"ntgcalls>=1.0.2",
"psutil",
"screeninfo",
"g4f",
"curl_cffi",
"google-generativeai",
"gradio-client",
"gradio",
"huggingface-hub>=0.23.2",
"motor",
"wget",
"uvicorn[standard]",
"fastapi[all]",
"authlib",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
],
python_requires="~=3.7",
)