-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (83 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
92 lines (83 loc) · 2.08 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
[build-system]
requires = ["setuptools>=68", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hypergraphx"
description = "HGX is a multi-purpose, open-source Python library for higher-order network analysis"
readme = "README.md"
requires-python = ">=3.10"
license = "BSD-3-Clause"
license-files = ["LICENSE.md"]
authors = [{name = "HGX-Team", email = "lotitoqf@gmail.com"}]
keywords = ["hypergraphs", "networks"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy",
"scipy",
"networkx",
"pandas",
"tqdm",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/HGX-Team/hypergraphx"
Repository = "https://github.com/HGX-Team/hypergraphx"
Documentation = "https://hypergraphx.readthedocs.io/"
Issues = "https://github.com/HGX-Team/hypergraphx/issues"
Changelog = "https://github.com/HGX-Team/hypergraphx/releases"
[project.optional-dependencies]
dev = [
"pytest",
"black>=24.3.0",
"ruff>=0.6.0",
"build>=1.2.1",
"twine>=5.1.1",
"pre-commit",
]
viz = [
"matplotlib",
# optional interactive hover labels in plot_motifs
"mplcursors",
]
docs = [
"sphinx",
"furo",
"nbsphinx",
"matplotlib",
"seaborn",
"tqdm",
]
ml = [
"scikit-learn",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["tests", ".github"]
[tool.setuptools_scm]
tag_regex = "^v(?P<version>.*)$"
version_scheme = "post-release"
local_scheme = "dirty-tag"
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.ruff]
line-length = 88
target-version = "py310"
extend-exclude = [
"*.ipynb",
"hypergraphx/communities/hy_mmsbm/model.py",
"hypergraphx/measures/shortest_paths.py",
"hypergraphx/viz/draw_communities.py",
"hypergraphx/viz/draw_hypergraph.py",
]
[tool.ruff.lint]
select = ["E9", "F63", "F7", "F82"]