-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.04 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "barc4beams"
version = "2026.04.20"
description = "A Python project for: standardization, statistics, and plotting ray-traced photon beams (PyOptiX, SHADOW3/4)."
readme = "README.md"
license = "CECILL-2.1"
authors = [{ name = "Rafael Celestre", email = "rafael.celestre@esrf.eu" }]
keywords = ["ray-tracing", "beamline design", "x-ray optics", "optics"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics"
]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.23",
"pandas>=1.5",
"scipy>=1.10",
"matplotlib>=3.6",
"h5py>=3.8",
]
[project.urls]
Homepage = "https://github.com/barc4/barc4beams"
Repository = "https://github.com/barc4/barc4beams"
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"sphinx>=7.0",
"sphinx-rtd-theme>=1.2",
]