forked from widgetti/ipyvuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (63 loc) · 1.95 KB
/
pyproject.toml
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
[build-system]
requires = ["jupyter_packaging~=0.7.9", "jupyterlab~=3.0", "setuptools>=40.8.0", "wheel", "pynpm"]
build-backend = "setuptools.build_meta"
[project]
name = "ipyvuetify"
version = "1.8.10"
description="Jupyter widgets based on vuetify UI components"
requires-python = ">=3.6"
dependencies = ["ipyvue>=1.7,<2"]
keywords=["ipython", "jupyter", "widgets"]
authors = [
{name = "Mario Buikhuizen", email = "[email protected]"},
{name = "Maarten Breddels", email = "[email protected]"},
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: IPython",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Graphics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
repository = "https://github.com/widgetti/ipyvuetify"
[project.license]
text = "MIT"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.optional-dependencies]
dev = ["nox", "pre-commit", "mypy"]
test = ["pytest", "pytest-playwright", "jupyterlab<4", "solara[pytest]"]
doc = ["sphinx<7", "jupyter-sphinx", "ipykernel"]
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
include = ["ipyvuetify*"]
exclude = ["docs*", "tests*"]
[tool.distutils.bdist_wheel]
universal = true
[tool.ruff]
fix = true
exclude = [
'.git',
'dist',
'.eggs',
'**/node_modules',
'**/generated',
]
ignore = [
"E501", # line too long | Black take care of it
#"W503", # line break before binary operator | Black takes care of it
#"E203", # whitespace before ':' | Black take care of it
]
line-length = 100
select = ["E", "W", "F", "Q", "I"]