AMUseBot/setup.py

35 lines
1.2 KiB
Python
Raw Normal View History

2023-04-16 01:28:43 +02:00
from setuptools import setup, find_packages
# Read the contents of the requirements.txt file
with open("requirements.txt") as f:
requirements = [line.strip() for line in f.readlines() if not line.startswith("-f")]
setup(
name="ai-talks",
2023-04-23 09:38:21 +02:00
version="0.9.1",
2023-04-16 03:11:57 +02:00
packages=find_packages(),
2023-04-23 09:38:21 +02:00
include_package_data=True,
2023-04-16 01:28:43 +02:00
install_requires=requirements, # Use the parsed requirements here
entry_points={
"console_scripts": [
2023-04-16 03:11:57 +02:00
"ai-talks=ai_talks.chat:run_agi",
2023-04-16 01:28:43 +02:00
],
},
author="Dmitry Kosarevsky",
author_email="if.kosarevsky@gmail.com",
description="A ChatGPT API wrapper, providing a user-friendly Streamlit web interface",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/dKosarevsky/AI-Talks",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
2023-04-23 09:38:21 +02:00
keywords="ai agi streamlit streamlit-component chat bot gpt llm",
python_requires=">=3.10",
2023-04-16 01:28:43 +02:00
)