mirror of
https://github.com/System-End/nephthys.git
synced 2026-04-19 19:45:12 +00:00
36 lines
650 B
TOML
36 lines
650 B
TOML
[project]
|
|
name = "nephthys"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"aiohttp>=3.11.14",
|
|
"prisma>=0.15.0",
|
|
"pydantic>=2.11.5",
|
|
"python-dotenv>=1.1.0",
|
|
"slack-bolt>=1.23.0",
|
|
"starlette>=0.46.1",
|
|
"thefuzz>=0.22.1",
|
|
"uvicorn>=0.34.0",
|
|
"uvloop>=0.21.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
nephthys = "nephthys.__main__:start"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pre-commit>=4.1.0",
|
|
]
|
|
|
|
[tool.pyright]
|
|
venvPath = "."
|
|
venv = ".venv"
|
|
|
|
[tool.hatch.envs.default]
|
|
path = "./.venv/"
|