aboutsummaryrefslogtreecommitdiff
path: root/projectA/pyproject.toml
blob: 6cc0361650049dda8f78a636aa6051315b3f964a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"