diff options
| author | kdam0 <me@kumardamani.net> | 2024-07-04 01:24:14 +0000 |
|---|---|---|
| committer | kdam0 <me@kumardamani.net> | 2024-07-04 01:24:14 +0000 |
| commit | ca7ef26e9985f3e66a0cb3a268c98d9205a4c2db (patch) | |
| tree | ad9d961ce87172c43264160dc4f680861f437562 /projectA/pyproject.toml | |
inital commit
Diffstat (limited to 'projectA/pyproject.toml')
| -rw-r--r-- | projectA/pyproject.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/projectA/pyproject.toml b/projectA/pyproject.toml new file mode 100644 index 0000000..6cc0361 --- /dev/null +++ b/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" |
