forked from hereon-GEMS/pydidas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (69 loc) · 2.41 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
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon
# SPDX-License-Identifier: CC0-1.0
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pydidas"
authors = [{name = "Malte Storm"}]
description = "pydidas - the PYthon DIffraction Data Analysis Suite"
readme = "README.rst"
requires-python = ">=3.11"
license = {text = "GNU General Public License v3"}
keywords = ["X-ray diffraction", "XRD", "WAXS", "SAXS"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Physics",
]
dynamic = ["version", "dependencies"]
[project.urls]
homepage = "https://pydidas.hereon.de/"
documentation = "https://hereon-gems.github.io/pydidas"
repository = "https://github.com/hereon-GEMS/pydidas"
changelog = "https://github.com/hereon-GEMS/pydidas/blob/master/CHANGELOG.md"
[tool.setuptools.dynamic]
version = { attr = "pydidas.version.VERSION" }
dependencies = { file = ["requirements.txt"]}
[tool.setuptools]
packages = ["pydidas", "pydidas_scripts", "pydidas_plugins", "pydidas_qtcore"]
[project.scripts]
pydidas-clear-settings = "pydidas_scripts.clear_local_settings:clear_local_settings"
pydidas-updater = "pydidas_scripts.pydidas_updater_script:run_update"
pydidas-documentation = "pydidas_scripts.open_documentation:open_documentation"
pydidas-remove-local-files = "pydidas_scripts.remove_local_files:run"
run-pydidas-workflow = "pydidas_scripts.run_pydidas_workflow:run_workflow"
remove-pydidas = "pydidas_scripts.remove_pydidas_from_system:remove_pydidas_from_system"
[project.gui-scripts]
pydidas-gui = "pydidas_scripts.pydidas_gui:run_gui"
[tool.pip-compile]
dependencies = [
"pyFAI==2024.2.0",
"scikit-image>=0.22.0",
"qtawesome>=1.3",
"sphinx>=7.2.0",
"sphinx_rtd_theme>=2.0.0",
"pyopencl>=2024.1",
"qtpy>=2.4.0",
"hdf5plugin>=4.4.0",
"pyyaml>=6.0",
"requests>=2.31.0",
"PyQt5==5.15.10",
"build>=1.0.3",
"setuptools>69.0.0"
]
[tools.coverage.report]
omit = ['*/tests/*']
[tool.isort]
profile = 'black'
extend_skip = ["__init__.py"]
lines_after_imports = 2
[tool.black]
line-length = 88
target-version = ['py311']
[tool.bandit]
skips = ["B311"]