forked from aiidalab/aiidalab-widgets-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
82 lines (77 loc) · 1.81 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
[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 =
PyCifRW~=4.4
aiida-core>=2.1,<3
aiidalab>=21.11.2
aiidalab-eln>=0.1.2,~=0.1
ansi2html~=1.6
ase~=3.18
bokeh~=2.0
humanfriendly~=10.0
ipytree~=0.2
ipywidgets~=7.7
more-itertools~=8.0
nglview~=3.0
optimade-client==2022.9.19
spglib~=1.14
vapory~=0.1.2
python_requires = >=3.8
include_package_data = True
zip_safe = False
[options.extras_require]
dev =
bumpver==2021.1114
pre-commit==2.10.1
pytest~=6.2
pytest-docker~=1.0
pytest-selenium~=4.0
selenium~=4.7.0
webdriver-manager~=3.8
docs =
MarkupSafe<2.1
myst-nb
pydata-sphinx-theme
sphinx
sphinxcontrib-contentui
sphinxcontrib-details-directive
smiles =
rdkit>=2021.09.2
scikit-learn~=0.24
[flake8]
ignore =
E501
W503
E203
per-file-ignores =
aiidalab_widgets_base/__init__.py: E402
exclude =
docs/,
docs/source/conf.py
[bumpver]
current_version = "v2.0.0b1"
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}"