-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.09 KB
/
pyproject.toml
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
[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 = [
"astropy>=4.2",
"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",
"pyqt5>=5.15.0",
"pyqtgraph>=0.13.1",
"scipy>=1.6.0",
"tqdm>=4.56.0",
"typing>=3.7",
]
[project.scripts]
db = "piva.main:db"
[project.urls]
Homepage = "https://github.com/pudeIko/piva.git"
[tool.hatch.version]
path = "piva/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/piva",
]