-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 807 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (38 loc) · 807 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
44
[project]
name = "pycalib"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"alive-progress>=3.2.0",
"ipython>=9.0.2",
"matplotlib>=3.10.1",
"mayavi>=4.8.2",
"nbformat>=5.10.4",
"numpy>=2.2.4",
"pandas>=2.2.3",
"pathlib>=1.0.1",
"plotly>=6.0.1",
"rich>=14.0.0",
"rich-argparse>=1.7.0",
"scipy>=1.15.2",
]
[project.scripts]
pycalib = "pycalib:main"
[project.optional-dependencies]
dev = [
"ipykernel>=6.29.5",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/pycalib"]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"pip>=25.0.1",
]