-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (90 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
97 lines (90 loc) · 1.96 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
[project]
name = "deepgraph"
description = "Analyze Data with Pandas-based Networks."
readme = "README.rst"
authors = [
]
license = "BSD-3-Clause"
license-files = ["LICENSE"]
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Cython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
]
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
"numpy>=1.21.6",
"pandas>=1.2",
]
[project.urls]
Homepage = "https://github.com/deepgraph/deepgraph/"
Documentation = "https://deepgraph.readthedocs.io"
Repository = "https://github.com/deepgraph/deepgraph/"
[project.optional-dependencies]
plot = ["matplotlib>=3.1"]
basemap = ["basemap>=2.0"]
tables = ["tables>=3.7"]
scipy = ["scipy>=1.5.4"]
networkx = ["networkx>=2.4"]
all = [
"matplotlib>=3.1",
"basemap>=2.0",
"tables>=3.7",
"scipy>=1.5.4",
"networkx>=2.4"
]
[dependency-groups]
dev = [
"notebook>=7.4.3",
"cython>=3.0.12",
"pytest>=7.3.2",
"sphinx>=1.8",
"sphinx_rtd_theme>=0.5"
]
doc = [
"sphinx>=1.8",
"sphinx_rtd_theme>=0.5"
]
[build-system]
requires = [
"wheel",
"setuptools>=61.0",
"numpy>=2.0.0",
"cython>3"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {""="src"}
[tool.cibuildwheel]
before-all = "uname -a"
build-frontend = "build[uv]"
enable = ["pypy"]
skip = [
"pp*i686",
"pp311-win_amd64",
]
test-requires = [
"pytest",
]
test-extras = [
"tables",
"scipy",
"networkx"
]
test-command = "pytest {project}/tests -v"
test-skip = [
"cp39-*",
"pp*linux*",
"*win*",
"*mac*",
"*i686*",
"*musllinux*"
]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]