forked from Comon-tech/ACT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (53 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
54 lines (53 loc) · 1.91 KB
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
[project]
name = "ACT"
version = "0.1"
description = """
**A**ssistant of **C**omon **T**ech.
Your AI Companion for Social Chat & RPG Adventures.
📧 Support Server: [Discord.gg/fpqMWc2zbr](https://discord.gg/fpqMWc2zbr)
📜 Source Code: [Github.com/Comon-tech/ACT](https://github.com/Comon-tech/ACT)
© **Comon** 2025
📩 Server: [Discord.gg/eqSU46Y7xW](https://discord.gg/eqSU46Y7xW)
🌐 Website: [Comon.tech](https://www.comon.tech)
📜 Github: [Github.com/Comon-tech](https://github.com/Comon-tech)
"""
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"alt-profanity-check>=1.6.1",
"audioop-lts>=0.2.1",
"discord-py>=2.4.0",
"fastapi[standard]>=0.115.8",
"filetype>=1.2.0",
"google-genai>=1.2.0",
"humanize>=4.11.0",
"odmantic>=1.0.2",
"pydantic>=2.10.6",
"pynacl>=1.5.0",
"python-dotenv>=1.0.1",
"tabulate[widechars]>=0.9.0",
# "yt-dlp>=2025.3.31",
]
#----------------------------------------------------------------------------------------------------
[dependency-groups]
dev = [
"py-mon>=2.0.5",
"taskipy>=1.14.1",
"ipykernel>=6.29.5",
"ipywidgets>=8.1.5",
]
#----------------------------------------------------------------------------------------------------
[tool.uv]
cache-dir = "./.uv_cache"
#----------------------------------------------------------------------------------------------------
[tool.taskipy.tasks]
db = { cmd = "mongod --port 1717 --dbpath .mongodb ", help = "run mongodb server" }
db-fix = { cmd = "mongod --repair --dbpath .mongodb", help = "repair mongodb dbs" }
db-man = { cmd = "mongosh --port 1717", help = "run mongodb shell" }
app = { cmd = "pymon main.py", help = "run app for development (hot reload)" }
app-prod = { cmd = "python main.py", help = "run app for production" }
#----------------------------------------------------------------------------------------------------
[tool.act.components]
bot = true
api = true
db = true