-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
69 lines (58 loc) · 1.25 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "ptychodus"
description = "Ptychodus is a ptychography data analysis application."
readme = "README.rst"
requires-python = ">=3.10"
license = {file = "LICENSE.txt"}
dependencies = [
"h5py",
"matplotlib",
"numpy",
"psutil",
"scikit-image",
"scipy",
"tifffile",
"watchdog",
]
dynamic = ["version"]
[project.scripts]
ptychodus = "ptychodus.__main__:main"
[project.optional-dependencies]
globus = ["gladier", "gladier-tools"]
gui = ["PyQt5"]
ptychonn = ["ptychonn==0.3.*,>=0.3.7"]
tike = ["tike==0.25.*,>=0.25.3"]
[tool.setuptools_scm]
[tool.mypy]
plugins = "numpy.typing.mypy_plugin"
[[tool.mypy.overrides]]
module = [
"fair_research_login",
"funcx_endpoint.*",
"gladier.*",
"globus_sdk.*",
"h5py",
"hdf5plugin",
"lightning.*",
"parsl.*",
"ptychonn.*",
"pvaccess",
"pvapy.*",
"scipy.*",
"tables.*",
"tifffile",
"tike.*",
]
ignore_missing_imports = true
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.format]
quote-style = "single"
[tool.setuptools.package-data]
"ptychodus" = ["py.typed"]
[tool.setuptools.packages.find]
where = ["src"]