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
33 lines
650 B
TOML
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",
|
|
]
|