-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
66 lines (59 loc) · 1.85 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
[metadata]
name = aiidalab_sssp
version = 23.3.0
description = AiiDAlab app to run pseudopotential verification
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/aiidalab/aiidalab-sssp
author = 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
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
project_urls =
Logo = https://raw.githubusercontent.com/aiidalab/aiidalab-sssp/main/miscellaneous/logo-sssp.png
Bug Tracker = https://github.com/aiidalab/aiidalab-sssp/issues
Documentation = https://github.com/aiidalab/aiidalab-sssp#readme
[options]
packages = find:
install_requires =
aiida-core~=2.2
aiida-sssp-workflow~=3.0.0
aiidalab-widgets-base~=2.0.0b5
widget-bandsplot~=0.5.1
widget-periodictable~=3.0
python_requires = >=3.8
[options.extras_require]
dev =
bumpver==2021.1114
pre-commit==2.11.1
[options.package_data]
aiidalab_sssp.parameters = ssspapp.yaml
[aiidalab]
title = SSSP toolbox
description = Perform pseudopotential calculations and verification
[flake8]
ignore =
E501 # Line length handled by black.
W503 # Line break before binary operator, preferred formatting for black.
E203 # Whitespace before ':', preferred formatting for black.
[bumpver]
current_version = "v23.03.0"
version_pattern = "v0Y.0M.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = True
tag = True
push = True
[bumpver:file_patterns]
aiidalab_sssp/version.py =
__version__ = "{version}"
setup.cfg =
current_version = "{version}"
version = {pep440_version}