-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 741 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 741 Bytes
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
31
32
33
34
35
[project]
name = "network-echos"
version = "0.1.0"
authors = [
{name = "Garland Culbreth", email = "culbreth.garland@gmail.com"}]
maintainers = [
{name = "Garland Culbreth", email = "culbreth.garland@gmail.com"}]
dependencies = [
"numpy>=2.1.0",
"networkx>=3.3",
"polars>=1.5.0",
"matplotlib>=3.9.2",
"seaborn>=0.13.2",
"pytest>=8.3.2",
"ruff>=0.6.2",
"rich>=13.9.4",
"pandas>2.2.2",
"pre-commit>=4.1.0",
"zensical>=0.0.23",
"mkdocstrings-python>=2.0.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/netechos"]
[tool.ruff.lint]
select = ["ALL"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["D104"]
"tests/*.py" = ["S101"]