-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
73 lines (67 loc) · 2.33 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
67
68
69
70
71
72
73
from pathlib import Path
from setuptools import setup
ROOT_PATH = Path(__file__).parents[0]
def read_contents(path: str) -> str:
full_path: Path = ROOT_PATH / path
return full_path.read_text(encoding="utf-8")
setup(
name="pytgpt-bot",
packages=["pytgpt_bot"],
version="0.1.7.4",
license="MIT",
author="Smartwa",
maintainer="Smartwa",
author_email="simatwacaleb@proton.me",
description="AI powered Telegram bot for chatting, text-to-image and text-to-speech conversions",
url="https://github.com/Simatwa/pytgpt-bot",
project_urls={
"Bug Report": "https://github.com/Simatwa/pytgpt-bot/issues/new",
"Homepage": "https://github.com/Simatwa/pytgpt-bot",
"Source Code": "https://github.com/Simatwa/pytgpt-bot",
"Issue Tracker": "https://github.com/Simatwa/pytgpt-bot/issues",
"Download": "https://github.com/Simatwa/pytgpt-bot/releases",
"Documentation": "https://github.com/Simatwa/pytgpt-bot/blob/main/README.md",
},
entry_points={
"console_scripts": [
"pytgpt-bot = pytgpt_bot.cli:entry",
],
},
install_requires=[
"pytelegrambotapi==4.17.0",
"python-tgpt>=0.8.0",
"python-dotenv==1.0.0",
"click==8.1.3",
"SQLAlchemy==2.0.29",
],
python_requires=">=3.10",
keywords=[
"ai",
"tgpt",
"pytgpt",
"chatbot",
"telegrambot",
"pytelegrambot",
"chatbot",
"text-to-speech",
"text-to-image",
],
long_description=read_contents("README.md"),
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: Free For Home Use",
"Intended Audience :: Customer Service",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)