-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpyproject.toml
More file actions
149 lines (135 loc) · 3.31 KB
/
Copy pathpyproject.toml
File metadata and controls
149 lines (135 loc) · 3.31 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PyGSP"
version = "0.6.1"
description = "Graph Signal Processing in Python"
readme = "README.rst"
requires-python = ">=3.8"
license = {text = "BSD"}
keywords = ["graph", "signal", "processing"]
authors = [
{name = "EPFL LTS2"}
]
maintainers = [
{name = "EPFL LTS2"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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",
]
dependencies = [
"numpy",
"scipy",
]
[project.optional-dependencies]
dev = [
# Import and export
"networkx",
# Construct patch graphs from images
"scikit-image",
# Fallback for nearest neighbors when pyflann is not available
"scikit-learn",
# Approximate nearest neighbors for kNN graphs
"pyflann3",
# Convex optimization
"pyunlocbox>=0.6.1",
# Plot graphs, signals, and filters
"matplotlib",
# Interactive graph visualization
"pyqtgraph",
"PyOpenGL",
"PyQt6",
# Run the tests
"flake8",
"coverage",
"coveralls",
"pytest",
"pytest-cov",
# Build the documentation
"sphinx",
"numpydoc",
"sphinxcontrib-bibtex",
"sphinx-gallery",
"memory_profiler",
"sphinx-rtd-theme",
"sphinx-copybutton",
# Build and upload packages
"build",
"wheel",
"twine",
"pre-commit",
]
test = [
"pytest",
"pytest-cov",
"flake8",
"coverage",
]
docs = [
"sphinx",
"numpydoc",
"sphinxcontrib-bibtex",
"sphinx-gallery",
"memory_profiler",
"sphinx-rtd-theme",
"sphinx-copybutton",
]
plot = [
"matplotlib",
"pyqtgraph",
"PyOpenGL",
"PyQt6",
]
[project.urls]
Homepage = "https://github.com/epfl-lts2/pygsp"
Documentation = "https://pygsp.readthedocs.io"
Download = "https://pypi.org/project/PyGSP"
"Source Code" = "https://github.com/epfl-lts2/pygsp"
"Bug Tracker" = "https://github.com/epfl-lts2/pygsp/issues"
"Try It Online" = "https://mybinder.org/v2/gh/epfl-lts2/pygsp/master?urlpath=lab/tree/examples/playground.ipynb"
[tool.setuptools.packages.find]
include = ["pygsp*"]
[tool.setuptools.package-data]
pygsp = ["data/pointclouds/*.mat"]
[tool.pytest.ini_options]
testpaths = ["pygsp/tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.coverage.run]
source = ["pygsp"]
omit = ["*/tests/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self.debug:",
"if settings.DEBUG",
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if __name__ == .__main__.:",
]
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503"]
[dependency-groups]
dev = [
"pre-commit>=3.5.0",
]