-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
42 lines (40 loc) · 1.28 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
from setuptools import setup, find_packages
import os
with open(os.path.join('README.MD'), 'r') as f:
long_description = f.read()
setup(
name='webai2api',
version='0.1.5',
description='Web API for AI models',
author='Amm1rr',
author_email='soheyl637@gmail.com',
url='https://github.com/amm1rr/WebAI-to-API',
packages=find_packages(),
install_requires=[
'fastapi==0.111.0',
'uvicorn',
'browser_cookie3==0.19.1',
'httpx==0.27.0',
'gemini-webapi==1.2.0',
'curl_cffi==0.6.3',
'httptools>=0.5.0'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Framework :: FastAPI',
'Framework :: Uvicorn',
'Operating System :: OS Independent',
'Natural Language :: English'
],
python_requires='>=3.10',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['API', 'web', 'AI', 'models', 'gemini', 'calude']
)