-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (75 loc) · 2.28 KB
/
pyproject.toml
File metadata and controls
82 lines (75 loc) · 2.28 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
[project]
name = "datasette-dashboards"
description = "Datasette plugin to create interactive data dashboards"
version = "0.8.0"
authors = [
{ name = "Romain Clement", email = "git@romain-clement.net" }
]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.10,<3.15"
dependencies = [
"datasette",
"datasette-leaflet",
"datasette-render-markdown",
]
keywords = ["datasette", "dashboards", "visualization", "vega"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Datasette",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: SQL",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/rclement/datasette-dashboards"
Issues = "https://github.com/rclement/datasette-dashboards/issues"
Changelog = "https://github.com/rclement/datasette-dashboards/blob/main/CHANGELOG.md"
[dependency-groups]
dev = [
"datasette-block-robots==1.1",
"datasette-cluster-map==0.18.2",
"datasette-publish-vercel==0.14.2",
"datasette-vega==0.6.2",
"faker==40.19.1",
"invoke==3.0.3",
"mypy==2.1.0",
"pytest==9.0.3",
"pytest-asyncio==1.3.0",
"pytest-cov==7.1.0",
"ruff==0.15.14",
"sqlite-utils==3.39",
]
[project.entry-points.'datasette']
"dashboards" = "datasette_dashboards"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"datasette_dashboards",
"pyproject.toml",
"README.md",
]
[[tool.mypy.overrides]]
module = "datasette_dashboards"
disallow_untyped_decorators = false
[[tool.mypy.overrides]]
module = "datasette.*"
ignore_missing_imports = true