-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (72 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
79 lines (72 loc) · 1.79 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "floweaver"
dynamic = ["version"]
description = "View flow data as Sankey diagrams."
readme = "README.rst"
license = { text = "MIT" }
authors = [
{ name = "Rick Lupton", email = "mail@ricklupton.name" },
]
keywords = ["Sankey", "diagram", "flow", "data", "visualisation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = [
"numpy",
"pandas",
"networkx>=2.1",
"attrs>=17.4",
"palettable",
]
[project.urls]
Homepage = "https://github.com/ricklupton/floweaver"
Documentation = "https://floweaver.readthedocs.io"
Repository = "https://github.com/ricklupton/floweaver"
Issues = "https://github.com/ricklupton/floweaver/issues"
[tool.hatch.version]
path = "src/floweaver/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/src/floweaver",
"/test",
"LICENSE",
"README.rst",
]
[tool.hatch.build.targets.wheel]
packages = ["src/floweaver"]
[tool.pytest.ini_options]
testpaths = ["test"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
[dependency-groups]
dev = [
"hypothesis>=6.113.0",
"ty>=0.0.12",
"pytest",
"matplotlib",
"pytest-cov",
"ruff>=0.14.14",
]
docs = [
"jupyterlab>=4.3.8",
"sphinx>=5,<8",
"nbsphinx>=0.9",
"nbconvert>=7",
"jupyter_client",
"ipykernel",
"ipysankeywidget",
"matplotlib",
]