-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 981 Bytes
/
pyproject.toml
File metadata and controls
44 lines (36 loc) · 981 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
34
35
36
37
38
39
40
41
42
43
[project]
name = "progressivis-tutorial"
version = "0.0.1"
authors = [
{ name="Jean-Daniel Fekete", email="jean-daniel.fekete@inria.fr" },
]
description = "Tutorial scripts and notebooks for learning ProgressiVis"
readme = "README.md"
requires-python = ">=3.13"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/progressivis/progressivis-tutorial"
Issues = "https://github.com/progressivis/progressivis-tutorial/issues"
[build-system]
requires = [
"hatchling >= 1.26",
"progressivis",
"ipyprogressivis",
"jupytext",
"jupyterlab",
"matplotlib",
"ruff",
]
build-backend = "hatchling.build"
[tool.jupytext]
formats = "ipynb,py:percent"
comment_magics=false
[tool.ruff]
builtins = ["display", "register_function"]
[tool.ruff.lint]
ignore = ["E402", "F704", "F403"]