-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 871 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 871 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
37
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyRET"
authors = [
{ name = "Swarnabha Chattaraj", email = "schattaraj@anl.gov"},
]
description = "First-principles tools for radiative and nonradiative resonant energy transfer between localized defects."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
dependencies = [
"numpy",
"scipy",
"h5py",
"matplotlib",
"mpi4py",
"pyscf",
"sphinx",
"sphinx_rtd_theme",
]
version = "0.0"
[project.scripts]
pyRET_compute_matrix_elements = "pyRET.run:main"
pyRET_load_wavefunctions_qe = "pyRET.loadWF_QE:main"
pyRET_load_wavefunctions_atomic = "pyRET.loadWF_Atomic:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["pyRET*"]