ChatMastermind/setup.py
2023-10-17 11:57:52 +02:00

42 lines
1.5 KiB
Python

from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
install_requirements = [line.strip() for line in fh]
setup(
name="ChatMastermind",
version="0.1.0",
author="Oleksandr Kozachuk",
author_email="ddeus.lp@mailnull.com",
description="A Python application to automate conversation with AI, store question+answer pairs, and compose chat history.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ok2/ChatMastermind",
packages=find_packages() + ["chatmastermind.ais", "chatmastermind.commands"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Topic :: Text Processing",
],
install_requires=install_requirements,
python_requires=">=3.9",
test_suite="tests",
entry_points={
"console_scripts": [
"cmm=chatmastermind.main:main",
],
},
)