-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
80 lines (71 loc) · 2.04 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "galore"
version = "0.9.2"
description = "Broadening and weighting for simulated spectra"
readme = "README.rst"
keywords = ["spectroscopy", "spectra", "chemistry", "physics",
"raman", "xps", "haxpes", "pes", "photoelectron",
"dos", "pdos", "gaussian", "lorentzian", "broadening"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics'
]
dependencies = [
"numpy>= 1.17",
"scipy",
"matplotlib",
]
requires-python = ">= 3.9"
maintainers = [
{name = "Scanlon Materials Theory Group", email = "[email protected]"},
]
[project.urls]
Repository = "https://github.com/SMTG-Bham/galore"
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx_rtd_theme",
"sphinx-argparse",
"sphinxcontrib-bibtex"
]
vasp = ["pymatgen"]
gpaw = ["gpaw"]
[project.scripts]
galore = "galore.cli.galore:main"
galore-get-cs = "galore.cli.galore_get_cs:main"
galore-plot-cs = "galore.cli.galore_plot_cs:main"
[tool.tox]
legacy_tox_ini = """
[tox]
min_version = 4.19
env_list =
py39
py310
py310-gpaw
py311
py312
[testenv]
deps = coverage
extras = vasp
allowlist_externals = coverage
commands = coverage run --source=galore -m unittest discover test
[testenv:py310-gpaw]
platform = linux
allowlist_externals =
{[testenv]allowlist_externals}
gpaw
commands_pre =
python -m pip install gpaw
gpaw install-data --register gpaw_setups
commands = {[testenv]commands}
"""