diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..4efe6f3 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,32 @@ +[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", +]