-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 875 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 875 Bytes
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
from setuptools import setup, find_packages
setup(
name="auto-poster-bot",
version="0.1.0",
description="Telegram Auto Poster Bot with AI Content Processing",
packages=find_packages(),
python_requires=">=3.11",
install_requires=[
"fastapi>=0.104.1",
"uvicorn[standard]>=0.24.0",
"sqlalchemy>=2.0.23",
"alembic>=1.12.1",
"psycopg2-binary>=2.9.9",
"redis>=5.0.1",
"celery>=5.3.4",
"python-telegram-bot>=20.7",
"telethon>=1.24.0",
"tgcrypto>=1.2.5",
"httpx>=0.25.2",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"python-jose[cryptography]>=3.3.0",
"passlib[bcrypt]>=1.7.4",
"python-multipart>=0.0.6",
"aiofiles>=23.2.1",
"python-dotenv>=1.0.0",
"asyncpg>=0.29.0",
"aioredis>=2.0.1",
],
)