forked from aiidalab/aiidalab-widgets-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
76 lines (71 loc) · 1.87 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
[metadata]
name = aiidalab_widgets_base
version = attr: aiidalab_widgets_base.__version__
description = Reusable widgets for AiiDAlab applications.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/aiidalab/aiidalab-widgets-base
author = The AiiDAlab team
author_email = [email protected]
license = MIT
license_file = LICENSE.txt
classifiers =
Development Status :: 5 - Production/Stable
Framework :: AiiDA
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
[options]
packages = find:
install_requires =
aiida-core>=1.0,<3
aiidalab>=21.11.2
aiidalab-eln>=0.1.2,~=0.1
ansi2html~=1.6
ase<3.20
bokeh~=2.0
deprecation~=2.1
ipytree~=0.2
ipywidgets~=7.6
jupyter-client<7
more-itertools~=8.0
nbconvert<6
nglview~=3.0
numpy~=1.17
optimade-client==2022.9.19
pandas~=1.0
scikit-learn~=0.24
spglib~=1.16
vapory~=0.1.2
python_requires = >=3.7
include_package_data = True
zip_safe = False
[options.extras_require]
dev =
bumpver==2021.1114
pre-commit==2.10.1
docs =
MarkupSafe<2.1
myst-nb
pydata-sphinx-theme
sphinx
sphinxcontrib-contentui
sphinxcontrib-details-directive
[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.
aiidalab_widgets_base/__init__.py E402 # module level import not at top of file
exclude =
docs/
[bumpver]
current_version = "v1.4.0"
version_pattern = "vMAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = True
tag = True
push = True
[bumpver:file_patterns]
aiidalab_widgets_base/__init__.py =
__version__ = "{pep440_version}"