diff options
| author | kdam0 <me@kumardamani.net> | 2024-07-04 02:38:00 +0000 |
|---|---|---|
| committer | kdam0 <me@kumardamani.net> | 2024-07-04 02:38:00 +0000 |
| commit | 961429150735efa060060a91f7e24dcec9bbb774 (patch) | |
| tree | 8fc9544f9db2f4accd7b89375d33d6ab70a2186f /flake-parts/projectA/pyproject.toml | |
| parent | 0a8f7fb544ee3dcf87d6cc0aeb67e8359ca142d5 (diff) | |
moved into sub-dir
Diffstat (limited to 'flake-parts/projectA/pyproject.toml')
| -rw-r--r-- | flake-parts/projectA/pyproject.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/flake-parts/projectA/pyproject.toml b/flake-parts/projectA/pyproject.toml new file mode 100644 index 0000000..6cc0361 --- /dev/null +++ b/flake-parts/projectA/pyproject.toml @@ -0,0 +1,19 @@ +[tool.poetry] +name = "testproject" +version = "0.1.0" +description = "" +authors = ["Your Name <you@example.com>"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +Django = "^5.0.6" +graphx = "^0.0.4" + +[tool.poetry.group.dev.dependencies] +mypy = "^1.10.1" +django-stub = "^0.1" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" |
