-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (40 loc) · 1.1 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
[project]
name = "reflex-plot"
version = "0.1.0"
description = "Plot your dataframe with reflex!"
authors = [
{ name = "Luciano Scarpulla", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"reflex>=0.5.9",
"pandas>=2.0.0",
"narwhals>=1.25.2",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["reflex-plot", "pandas", "reflex", "dashboard", "plotting"]
[project.urls]
source = "https://github.com/lucianosrp/reflex-plot"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"inline-snapshot>=0.13.3",
"pytest-coverage>=0.0",
"pytest>=8.3.2",
"mypy>=1.15.0",
]
[tool.hatch.build]
exclude = ["/.*", "/docs", "/tests", "/examples", "reflex-plot-example"]
[tool.hatch.build.targets.wheel]
packages = ["src/reflex_plot"]
[tool.pytest.ini_options]
addopts = "--cov=src --cov-fail-under=100"
[project.entry-points.pandas_plotting_backends]
reflex = "reflex_plot"