diff --git a/.gitignore b/.gitignore index b1ca95d..986b4a4 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,5 @@ turbo_django.egg-info/ ve venv .vscode -doc/build \ No newline at end of file +doc/build +build diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..223c725 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "turbo-django" +version = "0.8.0" +description = "An elegant integration of Hotwired Turbo with Django allowing for a Python-driven dynamic web experience." + +[tool.poetry.dependencies] +python = "^3.9" + + +[tool.poetry.dev-dependencies] +sphinx-autoapi = "^1.8.1" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api"