-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (87 loc) · 2.49 KB
/
pyproject.toml
File metadata and controls
97 lines (87 loc) · 2.49 KB
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
[project]
name = "panel-graphic-walker"
dynamic = ["version"]
description = "A project providing a Graphic Walker Pane for use with HoloViz Panel."
readme = "README.md"
authors = [
{ name = "Philipp Rudiger", email = "philipp.jfr@gmail.com" },
{ name = "Marc Skov Madsen", email = "marc.skov.madsen@gmail.com" }
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.10"
dependencies = ["panel>=1.6.1", "narwhals"]
[project.urls]
Homepage = "https://github.com/panel-extensions/panel-graphic-walker"
Source = "https://github.com/panel-extensions/panel-graphic-walker"
[build-system]
requires = ["hatchling", "hatch-vcs", "panel>=1.6.1", "packaging", "narwhals"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
raw-options = { version_scheme = "no-guess-dev" }
[tool.setuptools_scm]
version_scheme = "post-release"
[tool.hatch.build.hooks.custom]
path = 'hatch_build.py'
[tool.hatch.build.hooks.vcs]
version-file = "src/panel_gwalker/_version.py"
[project.optional-dependencies]
dev = [
"jedi-language-server;sys_platform == 'linux'",
"mypy",
"pandas-stubs",
"types-requests",
"pre-commit",
"pytest",
"ruff",
"watchfiles",
]
tests = [
"aiohttp",
"dask[dataframe]",
"duckdb",
"fastparquet",
"gw-dsl-parser",
"ibis-framework[duckdb,sqlite]",
"polars",
"pygwalker",
"pytest-asyncio",
"pytest",
"requests",
]
examples = [
"dask[dataframe]",
"duckdb",
"fastparquet",
"gw-dsl-parser",
"ibis-framework[duckdb,sqlite]",
"polars",
"pygwalker >=0.4.9.11",
"requests",
]
kernel = [
"duckdb ; platform_system != 'Emscripten'",
"gw-dsl-parser ; platform_system != 'Emscripten'",
"pygwalker >=0.4.9.11 ; platform_system != 'Emscripten'",
]
[tool.hatch.build.targets.wheel]
packages = ["src/panel_gwalker"]
[tool.hatch.build.targets.wheel.force-include]
"src/panel_gwalker/dist" = "panel_gwalker/dist"
[[tool.mypy.overrides]]
module = "param.*,pygwalker.*,gw_dsl_parser.*,requests.*"
ignore_missing_imports = true