-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (33 loc) · 1.06 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "cython>=3.0.0", "numpy>=1.26"]
build-backend = "setuptools.build_meta"
[project]
name = "GO-RXR"
version = "1.0"
description = "GO-RXR: Global Optimization of Resonant X-ray Reflectometry Tool for Analyzing Quantum Materials"
readme = "README.md"
license = {text = "BSD 3-Clause License"}
authors = [
{name = "Lucas Korol", email = "[email protected]"},
{name = "Robert J. Green", email = "[email protected]"},
{name = "Jesus P. Curbelo", email = "[email protected]"},
{name = "Raymond J. Spiteri", email = "[email protected]"}
]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.26",
"Cython>=3.0.0",
"h5py>=3.10.0",
"numba>=0.59.0",
"pyqtgraph>=0.13.0",
"scipy>=1.12.0",
"matplotlib>=3.8.0",
"PyQt5>=5.15.0"
]
[project.urls]
homepage = "https://github.com/lucaskorol21/GO-RXR"
[tool.setuptools]
packages = ["Magnetic_Scattering_Factor", "Scattering_Factor"]
include-package-data = true
[tool.setuptools.package-data]
"Magnetic_Scattering_Factor" = ["*.md"]