forked from id03/binoculars
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (49 loc) · 1.35 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
[build-system]
requires = [
"setuptools>=64",
"setuptools_scm>=8"
]
build-backend = "setuptools.build_meta"
[project]
name = "binoculars"
# version = "0.0.15" # Remove any existing version parameter.
dynamic = ["version"]
authors = [
{name = "Willem Onderwaater", email = "[email protected]"},
{name = "Frédéric-Emmanuel Picca", email = "[email protected]"},
{name = "Sander Roobol", email = "[email protected]"},
]
description = "Data reduction and analysis software for two-dimensional detectors in surface X-ray diffraction"
license={text = "GPL-3+"}
classifiers=[
"Topic :: Scientific/Engineering",
"Development Status :: 3 - Alpha",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.7",
]
dependencies = [
"h5py",
"numpy",
"matplotlib",
"pyFAI",
"PyGObject",
"PyMca5",
"PyQt5",
"xrayutilities"
]
[project.scripts]
binoculars="binoculars.scripts:main"
binoculars-server="binoculars.scripts.server:main"
[project.gui-scripts]
binoculars-fitaid="binoculars.scripts.fitaid:main"
binoculars-gui="binoculars.scripts.gui:main"
binoculars-processgui="binoculars.scripts.process:main"
[tool.setuptools.packages.find]
where = ['src/']
include = ["binoculars*"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]