|
@@ -0,0 +1,22 @@
|
|
|
|
|
+[project]
|
|
|
|
|
+name = "claudia"
|
|
|
|
|
+version = "0.1.0"
|
|
|
|
|
+description = "Claudia - Python project scaffold"
|
|
|
|
|
+readme = "README.md"
|
|
|
|
|
+requires-python = ">=3.9"
|
|
|
|
|
+keywords = ["scaffold", "template"]
|
|
|
|
|
+license = { file = "LICENSE" }
|
|
|
|
|
+
|
|
|
|
|
+[project.optional-dependencies]
|
|
|
|
|
+dev = ["pytest>=7"]
|
|
|
|
|
+
|
|
|
|
|
+[build-system]
|
|
|
|
|
+requires = ["setuptools>=61.0"]
|
|
|
|
|
+build-backend = "setuptools.build_meta"
|
|
|
|
|
+
|
|
|
|
|
+[project.scripts]
|
|
|
|
|
+claudia = "claudia.__main__:main"
|
|
|
|
|
+
|
|
|
|
|
+[tool.pytest.ini_options]
|
|
|
|
|
+addopts = "-q"
|
|
|
|
|
+pythonpath = ["src"]
|