diff options
| author | Andrew Guschin <guschin@altlinux.org> | 2024-10-28 19:22:34 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin@altlinux.org> | 2024-10-28 19:25:29 +0400 |
| commit | 4471a89bef824e9f9886228718fae99bff6c35e7 (patch) | |
| tree | 47923493944b70d1044ba44473719d940829dacc /drawer/pyproject.toml | |
| parent | 25d3c40871c9bca9e4bee1b767c8a1480d05c701 (diff) | |
feat: add program for visualizing graphs
Diffstat (limited to 'drawer/pyproject.toml')
| -rw-r--r-- | drawer/pyproject.toml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/drawer/pyproject.toml b/drawer/pyproject.toml new file mode 100644 index 0000000..04acc19 --- /dev/null +++ b/drawer/pyproject.toml @@ -0,0 +1,30 @@ +[project] +name = "drawer" +version = "0.1.0" +description = "Add your description here" +authors = [ + { name = "Andrew Guschin", email = "guschin@altlinux.org" } +] +dependencies = [ + "networkx>=3.4.2", + "matplotlib>=3.9.2", +] +readme = "README.md" +requires-python = ">= 3.8" + +[project.scripts] +start = "drawer:main" + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.rye] +managed = true +dev-dependencies = [] + +[tool.hatch.metadata] +allow-direct-references = true + +[tool.hatch.build.targets.wheel] +packages = ["src/drawer"] |