-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (60 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
70 lines (60 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
[project]
name = "reticula"
version = "0.13.0"
description="Analyse temporal network and hypergraphs efficiently."
authors = [{name="Arash Badie-Modiri", email="arashbm@gmail.com"}]
requires-python = ">=3.10"
license = {text = "MIT"}
readme = "README.md"
keywords = [
"Complex Networks", "Networks", "network",
"Graphs", "Graph Theory", "graph",
"Temporal Networks", "temporal network",
"Hypergraphs", "hypergraph", "hyper-graph"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Information Analysis"
]
[project.urls]
homepage = "https://reticula.network/"
documentation = "https://docs.reticula.network/"
repository = "https://github.com/reticula-network/reticula-python"
bug-tracker= "https://github.com/reticula-network/reticula-python/issues"
[project.optional-dependencies]
test = ["pytest", "hypothesis", "pytest-xdist", "networkx"]
[build-system]
requires = [
"setuptools>=67",
"wheel",
"scikit-build-core>=0.10.7",
"nanobind==2.8.0"
]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
wheel.py-api = "cp312"
build-dir = "build/{wheel_tag}"
[tool.cibuildwheel]
build-verbosity = 2
[tool.cibuildwheel.linux]
archs = ["x86_64"]
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
repair-wheel-command = "delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}"
[tool.cibuildwheel.macos.environment]
MACOSX_DEPLOYMENT_TARGET = "10.15"
[tool.cibuildwheel.windows]
archs = ["AMD64"]
before-build = "pip install delvewheel"
repair-wheel-command = "delvewheel repair -w {dest_dir} {wheel}"