-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpyproject.toml
85 lines (74 loc) · 2.13 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
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = [ "jupyterlab~=4.0", "setuptools>=40.8.0", "wheel", "pynpm"]
build-backend = "setuptools.build_meta"
[project]
name = "ipyvuetify"
version = "1.10.0"
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", "nbformat<5.10", "jupyterlab<4", "solara[pytest]"]
doc = [
"sphinx<7",
"jupyter-sphinx",
"ipykernel",
"pydata-sphinx-theme",
"sphinx-design",
"sphinx_rtd_theme",
]
[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]
ignore-init-module-imports = true
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
]
select = ["E", "W", "F", "Q", "I"]
[tool.black]
line-length = 100
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]