-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
104 lines (90 loc) · 2.33 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
include = ["reactable"]
[project]
name = "reactable"
description = "Interactive tables for Python."
readme = "README.md"
keywords = ["tables"]
license.file = "LICENSE"
authors = [
{ name = "Michael Chow", email = "[email protected]" }
]
dynamic = ["version"]
classifiers = [
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Scientific/Engineering :: Visualization"
]
dependencies = [
"htmltools",
"databackend",
"ipyreact<=0.4.1",
"IPython",
"importlib-metadata",
"importlib-resources",
"typing_extensions>=3.10.0.0",
]
requires-python = ">=3.9"
[project.optional-dependencies]
all = [
"reactable[dev]"
]
extra = [
]
dev = [
"black",
"jupyter",
"quartodoc>=0.7.1; python_version >= '3.9'",
"faicons",
"griffe==0.38.1",
"great-tables",
"mizani",
"pandas",
"polars",
"pre-commit==2.15.0",
"pyarrow",
"pyright>=1.1.244",
"pytest>=3",
"pytest-cov",
"syrupy",
"plotly"
]
[project.urls]
homepage = "https://github.com/machow/reactable-py"
documentation = "https://machow.github.io/reactable-py"
[tool.flake8]
exclude = ["docs", ".venv", "tests/*"]
ignore = [
"E501", # line too long (maximum 100 characters)
"W503", # line break before binary operator
"E203", # whitespace before ':'
]
max-line-length = 100
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
asyncio_mode = "strict"
testpaths = [
"tests"
]
markers = [
]
[tool.black]
line-length = 100