-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
setup.py
29 lines (28 loc) · 971 Bytes
/
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
from setuptools import setup
setup(
name="simpleaichat",
packages=["simpleaichat"], # this must be the same as the name above
version="0.2.2",
description="A Python package for easily interfacing with chat apps, with robust features and minimal code complexity.",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Max Woolf",
author_email="[email protected]",
url="https://github.com/minimaxir/simpleaichat",
keywords=["chatgpt", "openai", "text generation", "ai"],
classifiers=[],
license="MIT",
entry_points={
"console_scripts": ["simpleaichat=simpleaichat.cli:interactive_chat"]
},
python_requires=">=3.8",
install_requires=[
"pydantic>=2.0",
"fire>=0.3.0",
"httpx>=0.24.1",
"python-dotenv>=1.0.0",
"orjson>=3.9.0",
"rich>=13.4.1",
"python-dateutil>=2.8.2",
],
)