forked from aiidalab/aiidalab-qe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
83 lines (75 loc) · 2.21 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
[metadata]
name = aiidalab_qe
version = 24.4.0a2
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 = Carl Simon Adorf, Aliaksandr Yakutovich, Marnik Bercx, Jusong Yu
author_email = [email protected]
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://github.com/aiidalab/aiidalab-qe#readme
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.4.0
aiidalab-widgets-base[optimade]~=2.2.0a0
aiida-pseudo~=1.4
filelock~=3.8
importlib-resources~=5.2
python_requires = >=3.9
[options.packages.find]
where = src
[options.extras_require]
dev =
bumpver~=2023.1124
pre-commit~=3.2
pytest~=6.2
pytest-regressions~=2.2
pgtest==1.3.1
pytest-cov~=4.0
[options.package_data]
aiidalab_qe.app.parameters = qeapp.yaml
aiidalab_qe.app.static = *
aiidalab_qe.app.structure.examples = *
aiidalab_qe.plugins.xas = pseudo_toc.yaml
[options.entry_points]
aiidalab_qe.properties =
bands = aiidalab_qe.plugins.bands:bands
pdos = aiidalab_qe.plugins.pdos:pdos
xps = aiidalab_qe.plugins.xps:xps
electronic_structure = aiidalab_qe.plugins.electronic_structure:electronic_structure
xas = aiidalab_qe.plugins.xas:xas
[aiidalab]
title = Quantum ESPRESSO
description = Perform Quantum ESPRESSO calculations
categories =
quantum
[bumpver]
current_version = "v24.04.0a2"
version_pattern = "v0Y.0M.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = True
tag = True
push = True
[bumpver:file_patterns]
src/aiidalab_qe/version.py =
__version__ = "{version}"
setup.cfg =
current_version = "{version}"
version = {pep440_version}
docs/source/conf.py =
version = "{version}"