forked from aiidalab/aiidalab-qe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
84 lines (75 loc) · 2.03 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
[metadata]
name = aiidalab_qe
version = 23.10.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 = 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://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.3.0
aiidalab-widgets-base~=2.0.2
filelock~=3.8
importlib-resources~=5.2
widget-bandsplot~=0.5.1
pydantic~=1.10,>=1.10.8
python_requires = >=3.8
[options.packages.find]
where = src
[options.extras_require]
dev =
bumpver~=2023.1124
pre-commit~=2.20
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 = *
[options.entry_points]
aiidalab_qe.properties =
bands = aiidalab_qe.plugins.bands:bands
pdos = aiidalab_qe.plugins.pdos:pdos
[aiidalab]
title = Quantum ESPRESSO
description = Perform Quantum ESPRESSO calculations
categories =
quantum
[flake8]
ignore =
E501
W503
E203
[bumpver]
current_version = "v23.10.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}