-
Notifications
You must be signed in to change notification settings - Fork 32
/
pyproject.toml
120 lines (112 loc) · 2.92 KB
/
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
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
110
111
112
113
114
115
116
117
118
119
120
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.2", "wheel"]
[project]
name = "xgi"
dynamic = ["version"]
description = "XGI is a Python package for higher-order networks."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.md"}
authors = [
{name = "XGI Developers", email = "nicholas.landry@virginia.edu"}
]
maintainers = [
{name = "XGI Developers", email = "nicholas.landry@virginia.edu"}
]
keywords = [
"networks",
"higher-order",
"higher-order network",
"hypergraph",
"simplicial complex",
"network science",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy>=1.20",
"scipy>=1.8",
"pandas>=1.3",
"networkx>=2.7",
"requests>=2.0",
"matplotlib>=3.4",
"seaborn>=0.10",
]
[project.urls]
Documentation = "https://xgi.readthedocs.io/en/stable/"
"Bug Reports" = "https://github.com/xgi-org/xgi/issues"
Source = "https://github.com/xgi-org/xgi"
PyPI = "https://pypi.org/project/xgi/"
"GitHub Discussions" = "https://github.com/xgi-org/xgi/discussions"
[project.optional-dependencies]
benchmark = [
"pytest>=7.2",
"pytest-benchmark>=5.0",
]
developer = [
"black[jupyter]>=24.3",
"isort==5.10.1",
"pylint>=3.0",
"nbqa",
]
docs = [
"sphinx~=6.0",
"sphinx_copybutton",
"sphinx-rtd-theme>=1.2",
"numpydoc>=1.1",
"pillow>=8.2",
"matplotlib>=3.3",
"sphinx-design",
"ipykernel",
"nbsphinx",
"nbsphinx-link",
"pydata-sphinx-theme",
"sphinx-gallery",
]
release = [
"twine>=3.4",
"build>=1.2.1",
"wheel>=0.36",
]
test = [
"pytest>=7.2",
"pytest-cov>=4.0",
]
tutorial = [
"jupyter>=1.0",
"ipython<=8.12.0",
]
all = ["xgi[benchmark,developer,docs,release,test,tutorial]"]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic.version]
attr = "xgi.__version__"
[tool.pytest.ini_options]
# always run doctests
addopts = "--doctest-modules --ignore=docs"
# custom markers
markers = [
"webtest: mark test as an online test.",
"slow: mark test as slow."
]
[tool.isort]
skip = ["__init__.py", "benchmarks/env"]
profile = "black"