38 lines
709 B
TOML
38 lines
709 B
TOML
[project]
|
|
name = "bpe-jigsaw"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
license = { file = "LICENSE" }
|
|
authors = [
|
|
{ name = "Doc", email = "lastdoc39@gmail.com" }
|
|
]
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"cc-ampapi>=1.3.0",
|
|
"fastapi>=0.120.1",
|
|
"httpx>=0.28.1",
|
|
"pip>=25.3",
|
|
"pycord>=0.1.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
bpe-jigsaw = "bpe_jigsaw.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.4,<0.10.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = "src"
|
|
testpaths=["tests"]
|
|
norecursedirs=[".git", ".venv"]
|
|
addopts = ["import-mode=importlib"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.4.2",
|
|
"pytest-cov>=7.0.0",
|
|
]
|
|
|