forked from pudeIko/piva
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.22 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (51 loc) · 1.22 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "piva"
version = "2.3.2"
description = "PIVA - Photoemission Interface for Visualization and Analysis"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Wojtek Pudelko", email = "wojciech.pudelko@psi.ch" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"data_slicer>=1.0.2",
"h5py>=3.11.0",
"igor2>=0.5",
"ipywidgets>=7.6.3",
"julia>=0.5.6",
"jupyterlab>=3.5",
"jupyterthemes>=0.20.0",
"matplotlib>=3.3.4",
"numba>=0.57.0",
"numpy<2.0.0",
"openpyxl>=3.0.9",
"pandas>=1.3.5",
"pydantic>=2.0.0",
"pyqt5>=5.15.0",
"pyqtgraph>=0.13.1",
"scipy>=1.6.0",
"tqdm>=4.56.0",
"typing>=3.7",
]
[project.optional-dependencies]
test = ["pytest", "tox"]
[project.scripts]
piva = "piva.main:db"
[project.urls]
Homepage = "https://github.com/pudeIko/piva.git"
Documentation = "https://piva.readthedocs.io/en/latest/intro.html"
[tool.hatch.version]
path = "piva/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/piva",
]