summaryrefslogtreecommitdiff
path: root/drawer/pyproject.toml
blob: 04acc19aeef24a1c29ec467aa4af12d961bc3478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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"]