-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
77 lines (63 loc) · 1.54 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "reacton"
authors = [{name = "Maarten A. Breddels", email = "[email protected]"}]
license = {file = "LICENSE"}
dynamic = ["version", "description"]
dependencies = [
"ipywidgets",
"typing_extensions >= 4.1.1",
]
classifiers = [
"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",
"Framework :: Jupyter",
"Topic :: Software Development :: User Interfaces",
"Environment :: Web Environment",
]
[tool.hatch.version]
path = "reacton/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["react_ipywidgets", "reacton"]
[tool.hatch.build.targets.sdist]
packages = ["react_ipywidgets", "reacton"]
[project.optional-dependencies]
dev = [
"flake8",
"black",
"mypy",
"pre-commit",
"coverage",
"pytest",
"pytest-cov",
"bqplot",
"numpy",
"ipyvuetify",
"bump2version",
"jinja2",
"pandas",
"ipykernel",
]
generate = [
"black",
"bqplot",
"jinja2",
"mypy",
]
[project.urls]
Home = "https://www.github.com/widgetti/reacton"
Documentation = "https://reacton.solara.dev"
"Source code" = "https://www.github.com/widgetti/reacton"
[tool.black]
line-length = 160
[tool.ruff]
line-length = 160
[tool.isort]
profile = "black"