-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 910 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sci-streak"
version = "0.2.5"
authors = [
{ name="Dallas Strandell", email="[email protected]" },
]
description = "Python GUI for initial analysis and plotting of Streak Camera data"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft :: Windows :: Windows 10",
]
dependencies = [
"pyside6>=6.3",
"numpy>=1.23",
"h5py>=3.7",
"scipy>=1.8",
"matplotlib>=3.4",
"pyqtgraph>=0.12",
"lmfit>=1.0",
]
[project.urls]
"Homepage" = "https://github.com/dstrande/sci-streak"
"Bug Tracker" = "https://github.com/dstrande/sci-streak/issues"
[tool.hatch.build]
include = [
"/streakgui",
]