-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 960 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 960 Bytes
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel", "numpy", "pybind11>=2.12"]
build-backend = "setuptools.build_meta"
[project]
name = "progressivis_cpp"
description = "C++ modules for ProgressiVis"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [
{ name = "INRIA, Jean-Daniel Fekete, Christian Poli", email = "jean-daniel.fekete@inria.fr" },
]
keywords = ["Progressive analytics visualization"]
classifiers = [
"Development Status :: 2 - PRe-Alpha",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: BSD License",
]
dependencies = [
"progressivis",
]
# Important: Remove any existing version declaration
# version = "0.0.1"
dynamic = ["version"]
# more missing
[tool.setuptools_scm]
version_file = "progressivis_cpp/_version.py"
[tool.ruff]
extend-exclude = ["notebooks"]