-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
66 lines (54 loc) · 1.5 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 = jupyter-ui-poll
version = attr: jupyter_ui_poll._version.__version__
description = Block jupyter cell execution while interacting with widgets
long_description = file: README.rst
long_description_content_type = text/x-rst
platforms = any
license = MIT License
url = https://github.com/kirill888/jupyter-ui-poll
author = Kirill Kouzoubov
author_email = [email protected]
keywords = jupyter, ipywidgets
project_urls =
Documentation = https://jupyter-ui-poll.readthedocs.io/en/latest/
Bug Reporting = https://github.com/kirill888/jupyter-ui-poll/issues
classifiers =
Framework :: Jupyter
Intended Audience :: Developers
Development Status :: 5 - Production/Stable
Operating System :: OS Independent
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
zip_safe = true
include_package_data = true
python_requires = >= 3.8
packages = jupyter_ui_poll
test_suite = tests
setup_requires =
setuptools
install_requires =
ipython
[options.extras_require]
dev =
wheel
jupyter
docs =
sphinx
sphinx-autodoc-typehints
sphinx-rtd-theme
[bdist_wheel]
universal = true
[flake8]
max-line-length = 99
doctests = True
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/
[mypy]
python_version = 3.8
ignore_missing_imports = True
allow_redefinition = True