-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (102 loc) · 2.72 KB
/
pyproject.toml
File metadata and controls
109 lines (102 loc) · 2.72 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "iplotx"
description = "Universal network and tree visualisation library."
authors = [
{name = "Fabio Zanini", email = "[email protected]"}
]
maintainers = [
{name = "Fabio Zanini", email = "[email protected]"}
]
requires-python = ">=3.10"
readme = "README.md"
dynamic = ["version"]
dependencies = [
"matplotlib>=3.10.0",
"numpy>=2.0.0",
"pandas>=2.0.0",
]
license = {text = "MIT"}
license-files = ["LICEN[CS]E.*"]
keywords = ["network", "graph", "visualisation", "plotting", "tree", "phylogeny"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: System :: Networking",
"Typing :: Typed",
"Framework :: Matplotlib",
]
[project.optional-dependencies]
networkx = [
"networkx>=2.0.0",
]
igraph = [
"igraph>=0.11.0",
]
[dependency-groups]
test = [
"pytest>=7.0.0",
"flake8>=3.9.0",
"igraph>=0.11.8",
"networkx>=3.4.2",
"biopython>=1.85",
"cogent3>=2025.9.8a2",
"ete4>=4.3.0",
"mypy>=1.15.0",
"scikit-bio>=0.6.3",
"pandas-stubs>=2.2.3.250527",
"types-networkx>=3.5.0.20250610",
"pytest-cov>=6.2.1",
"networkx>=2.0.0,<=3.4.2",
"pylint>=3.3.7",
"dendropy>=5.0.8",
"phyloframe>=0.7.0",
]
docs = [
"sphinx",
"myst-parser>=4.0.1",
"sphinx-design>=0.6.1",
"sphinx-gallery>=0.19.0",
"igraph>=0.11.8",
"networkx>=3.4.2",
"biopython>=1.85",
"ete4>=4.3.0",
"scikit-bio>=0.6.3",
"cogent3>=2025.9.8a2",
"pylint>=3.3.7",
"pydata-sphinx-theme>=0.16.1",
"dendropy>=5.0.8",
"cartopy>=0.25.0",
"phyloframe>=0.7.0",
"seaborn>=0.13.0",
]
typing = ["mypy", "types-requests"]
typing-test = [{include-group = "typing"}, {include-group = "test"}, "useful-types"]
[project.urls]
Homepage = "https://github.com/fabilab/iplotx"
Documentation = "https://readthedocs.org/iplotx"
Repository = "https://github.com/fabilab/iplotx.git"
"Bug Tracker" = "https://github.com/fabilab/iplotx/issues"
Changelog = "https://github.com/fabilab/iplotx/blob/main/CHANGELOG.md"
[tool.hatch.version]
path = "iplotx/version.py"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.ruff]
line-length = 100
extend-exclude = ["gallery/**/plot_*.py", "gallery/**/data/*"]