forked from snowby666/poe-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1.14 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
from setuptools import setup, find_packages
from pathlib import Path
base_path = Path(__file__).parent
long_description = (base_path / "README.md").read_text(encoding='utf-8')
VERSION = '1.3.2'
DESCRIPTION = 'A simple API wrapper for Poe.com using Httpx'
LONG_DESCRIPTION = '👾 A Python API wrapper for Poe.com, using Httpx. With this, you will have free access to ChatGPT, Claude, Llama, Google-PaLM and more! 🚀'
setup(
name="poe-api-wrapper",
version=VERSION,
author="snowby666",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
python_requires=">=3.7",
install_requires=['httpx', 'websocket-client', 'requests_toolbelt', 'loguru'],
extras_require={
'proxy': ['ballyregan; python_version>="3.9"']
},
keywords=['python', 'poe', 'quora', 'chatgpt', 'claude', 'poe-api', 'api'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent"
],
url="https://github.com/snowby666/poe-api-wrapper"
)