-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
111 lines (106 loc) · 2.89 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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="akenoai",
packages=setuptools.find_packages(),
version=read("akenoai/__version__.py", version=True),
license="MIT",
description="AkenoAi Python Wrapper For Plus+",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="TeamKillerX",
project_urls={
"Source": "https://github.com/TeamKillerX/akenoai-lib/",
"Issues": "https://github.com/TeamKillerX/akenoai-lib/issues",
},
keywords=[
"API",
"akeno-lib",
],
install_requires=[
"requests",
],
extras_require={
"porno": [
"aiohttp",
"wget",
"requests",
"httpx[http2]",
],
"standard": [
"g4f",
"httpx[http2]",
"typing",
"aiohttp",
"bs4",
"openai",
"google-generativeai",
"curl_cffi",
"motor",
"typing-extensions",
"huggingface-hub>=0.23.2",
"authlib",
"gpytranslate",
"fastapi[all]",
"uvicorn[standard]",
"pyrogram",
],
"all": [
"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",
"psutil",
"screeninfo",
"g4f",
"curl_cffi",
"google-generativeai",
"gradio-client",
"gradio",
"huggingface-hub>=0.23.2",
"motor",
"wget",
"uvicorn[standard]",
"fastapi[all]",
"authlib",
"numpy",
"python-dateutil",
],
},
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",
)