-
Notifications
You must be signed in to change notification settings - Fork 168
/
setup.py
66 lines (62 loc) · 2.02 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
"""Setup script for chatgpt-tool-hub"""
import os.path
import setuptools
from setuptools import setup
# The directory containing this file
HERE = os.path.abspath(os.path.dirname(__file__))
# The text of the README file
with open(os.path.join(HERE, "README.md")) as fid:
README = fid.read()
__version__ = None # set __version__ in this exec() call
exec(open('chatgpt_tool_hub/version.py').read())
# This call to setup() does all the work
setup(
name="chatgpt-tool-hub",
version=str(__version__),
description=(
"An open-source chatgpt tool ecosystem where you can combine tools "
"with chatgpt and use natural language to do anything."
),
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/goldfishh/chatgpt-tool-hub",
author="goldfishh",
author_email="[email protected]",
license="MIT",
packages=setuptools.find_packages(exclude=["*.dev", "*.dev.*", "dev.*", "*.custom_tools", "*.custom_tools.*", "custom_tools.*"]),
include_package_data=True,
install_requires=[
'pyyaml~=6.0',
'pydantic~=2.5.3',
'rich',
'python-dotenv',
'openai~=0.27.8',
'tenacity~=8.2.2',
'tiktoken~=0.4.0',
'arxiv',
'pyopenssl',
'azure-cognitiveservices-speech',
'langid',
'dashscope',
'requests',
'lxml',
'beautifulsoup4~=4.12.0',
'aiohttp~=3.8.6',
'qrcode',
'pyqrcode',
'pillow',
'wikipedia',
'wolframalpha'
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)