Files
devterm/pyproject.toml
7000pctAUTO c2e508cc6c
Some checks failed
CI / test (3.10) (push) Failing after 10s
CI / test (3.11) (push) Failing after 12s
CI / test (3.8) (push) Has been cancelled
CI / test (3.9) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / typecheck (push) Has been cancelled
CI / build-package (push) Has been cancelled
Add project metadata, README, and LICENSE
2026-01-29 11:10:23 +00:00

33 lines
650 B
TOML

[project]
name = "devterm"
version = "0.1.0"
description = "A CLI tool that spawns a local web server providing browser-based developer utilities"
requires-python = ">=3.8"
dependencies = [
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"rich>=13.0.0",
"jinja2>=3.1.0",
"pycron>=3.0.0",
"PyJWT>=2.8.0",
]
[project.scripts]
devterm = "devterm.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]