-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 912 Bytes
/
pyproject.toml
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
36
37
38
39
40
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "fluffyclone"
dynamic = ["version"]
dependencies = [
"numpy>=1.24",
"matplotlib>=3.4",
"networkx>=2.6",
]
requires-python = ">=3.10"
authors = [
{name = "Ulysse Herbach", email = "[email protected]"},
]
description = "Using the weighted uniform distribution over spanning trees"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/ulysseherbach/fluffyclone"
[tool.hatch.build.targets.sdist]
exclude = ["/.git*"]
[tool.hatch.build.targets.wheel]
packages = ["src/fluffyclone"]
[tool.hatch.version]
source = "vcs"
raw-options = {local_scheme = "no-local-version"}
[tool.ruff]
select = ["E", "F", "W"]
line-length = 79