-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 857 Bytes
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyBRIXS"
version = "1.0.0"
description = "Python tools to post process BRIXS results."
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Christian Vorwerk"},
{ name = "Elias Richter", email = "richtere@physik.hu-berlin.de"},
{ name = "Benedikt Maurer", email = "maurerbe@physik.hu-berlin.de"},
{ name = "Claudia Draxl", email = "claudia.draxl@physik.hu-berlin.de"},
]
license = { text = "GPLv3" }
dependencies = [
"numpy",
"scipy",
"matplotlib",
"h5py",
]
[project.urls]
Homepage = "https://exciting-code.org/"
Repository = "https://github.com/exciting/pyBRIXS"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
pyBRIXS-ddcs = "pyBRIXS.ddcs:main"