-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
68 lines (62 loc) · 1.61 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
[metadata]
name = shinywidgets
version = attr: shinywidgets.__version__
author = Carson Sievert
author_email = [email protected]
url = https://github.com/rstudio/py-shinywidgets
description = Render ipywidgets in Shiny applications
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_files = LICENSE
platforms = any
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
project_urls =
Bug Tracker = https://github.com/rstudio/py-shinywidgets/issues
Documentation = https://github.com/rstudio/py-shinywidgets/
Source Code = https://github.com/rstudio/py-shinywidgets/
[options]
python_requires = >=3.9
packages = find:
test_suite = tests
include_package_data = True
setup_requires =
setuptools
install_requires =
ipywidgets>=7.6.5
jupyter_core
shiny>=0.6.1.9005
python-dateutil>=2.8.2
tests_require =
pytest>=3
zip_safe = False
[options.extras_require]
test =
pytest>=6.2.4
dev =
black>=23.1.0
flake8==3.9.2;python_version<="3.7"
flake8>=6.0.0;python_version>"3.7"
isort>=5.11.2
pyright>=1.1.284
wheel
altair
bokeh
jupyter_bokeh
plotly
pydeck
[options.packages.find]
include = shinywidgets, shinywidgets.*
[options.package_data]
shinywidgets = py.typed
[flake8]
ignore = E203, E302, E402, E501, F403, F405, W503
exclude = docs