-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
60 lines (54 loc) · 1.34 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
[metadata]
name = aiidalab_eln
version = attr: aiidalab_eln.version.__version__
description = Package that integrates AiiDAlab with Electronic Laboratory Notebooks.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/aiidalab/aiidalab-eln
author = The AiiDAlab team
author_email = [email protected]
license = MIT
license_files = LICENSE
classifiers =
Framework :: AiiDA
License :: OSI Approved :: MIT License
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
[options]
packages = find:
install_requires =
aiida-core>=1.1.0,<3
ase
cheminfopy>=0.6.0
ipywidgets
pytojcamp
requests
python_requires = >=3.8
[options.extras_require]
dev =
bumpver==2021.1114
pre-commit==2.10.1
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88
[flake8]
ignore =
E501
W503
E203
[bumpver]
current_version = "v0.1.3"
version_pattern = "vMAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}."
commit = True
tag = True
push = True
[bumpver:file_patterns]
aiidalab_eln/version.py =
__version__ = "{pep440_version}"