-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (25 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
34 lines (25 loc) · 822 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pica"
dynamic = ["version", "readme"]
license = {file = "LICENSE"}
dependencies = [
"numpy >= 2.0",
"scipy",
"pyyaml",
"h5py",
"dacite"
]
requires-python = ">=3.10"
authors = [{name="Daniel Seipt", email="d.seipt@hi-jena.gsi.de"},
{name="Dupish Dupish"}]
description = "High-Energy Polarized ICS Gamma-Ray Simulations"
keywords = ["ICS", "hixps", "LUXE", "gamma rays", "gamma source", "scattering"]
[project.optional-dependencies]
[project.urls]
Repository = "https://github.com/hixps/pica"
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
version = {attr = "pica.__version__.__version__"}