-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.cfg
91 lines (82 loc) · 2.65 KB
/
setup.cfg
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
81
82
83
84
85
86
87
88
89
90
91
[metadata]
name = aiidalab_qe
version = 24.10.0a4
description = Package for the AiiDAlab QE app
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/aiidalab/aiidalab-qe
author = AiiDAlab team
author_email = aiidalab@materialscloud.org
license = MIT
license_file = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
project_urls =
Bug Tracker = https://github.com/aiidalab/aiidalab-qe/issues
Documentation = https://aiidalab-qe.readthedocs.io/
Logo = https://raw.githubusercontent.com/aiidalab/aiidalab-qe/master/miscellaneous/logos/QE.jpg
[options]
package_dir =
= src
packages = find:
install_requires =
aiida-core~=2.2,<3
Jinja2~=3.0
aiida-quantumespresso~=4.7
aiidalab-widgets-base[optimade]==2.3.0a2
aiida-pseudo~=1.4
filelock~=3.8
importlib-resources~=5.2
aiida-wannier90-workflows==2.3.0
python_requires = >=3.9
[options.packages.find]
where = src
[options.extras_require]
dev =
bumpver~=2023.1124
pre-commit~=3.2
pytest~=7.4
pytest-regressions~=2.2
pgtest==1.3.1
pytest-cov~=5.0
[options.package_data]
aiidalab_qe.app.parameters = qeapp.yaml
aiidalab_qe.app.static.styles = *.css
aiidalab_qe.app.static.templates = *.jinja
aiidalab_qe.app.structure.examples = *
aiidalab_qe.plugins.xas = pseudo_toc.yaml
aiidalab_qe.plugins.xps.structure_examples = *
aiidalab_qe.plugins.xas.structure_examples = *
[options.entry_points]
aiidalab_qe.properties =
bands = aiidalab_qe.plugins.bands:bands
pdos = aiidalab_qe.plugins.pdos:pdos
electronic_structure = aiidalab_qe.plugins.electronic_structure:electronic_structure
xps = aiidalab_qe.plugins.xps:xps
xas = aiidalab_qe.plugins.xas:xas
aiida.workflows =
aiidalab_qe.bands_workchain = aiidalab_qe.plugins.bands.bands_workchain:BandsWorkChain
[aiidalab]
title = Quantum ESPRESSO
description = The Quantum ESPRESSO (QE) app is a web-based interface within AiiDAlab that allows users to perform first-principles calculations and analyze material properties (e.g., band structures) directly from their browser.
categories =
quantum
[bumpver]
current_version = "v24.10.0a4"
version_pattern = "v0Y.0M.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = True
tag = True
push = True
pre_commit_hook = ./bumpver_pre_commit.sh
[bumpver:file_patterns]
src/aiidalab_qe/version.py =
__version__ = "{version}"
setup.cfg =
current_version = "{version}"
version = {pep440_version}
docs/source/conf.py =
version = "{version}"