-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
47 lines (40 loc) · 999 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
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py4D_browser"
version = "1.2.1"
authors = [
{ name="Steven Zeltmann", email="steven.zeltmann@lbl.gov" },
]
description = "A 4D-STEM data browser built on py4DSTEM."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"py4dstem >= 0.14.9",
"emdfile >= 0.0.11",
"h5py",
"numpy >= 1.19",
"matplotlib >= 3.2.2",
"platformdirs",
"PyQt5 >= 5.10",
"pyqtgraph >= 0.11",
"sigfig",
]
[project.scripts]
py4DGUI = "py4D_browser.runGUI:launch"
[project.urls]
"Homepage" = "https://github.com/py4dstem/py4D-browser"
"Bug Tracker" = "https://github.com/py4dstem/py4D-browser/issues"
[tool.pyright]
venv = "py4dstem"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
py4D_browser = ["*.png"]