-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 1.05 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
[project]
name = "datasette-enrichments-quickjs"
version = "0.1a2"
description = "Enrich data with a custom JavaScript function"
readme = "README.md"
authors = [{name = "Simon Willison"}]
license = {text = "Apache-2.0"}
classifiers=[
"Framework :: Datasette",
"License :: OSI Approved :: Apache Software License"
]
requires-python = ">=3.8"
dependencies = [
"datasette",
"datasette-enrichments",
"quickjs",
"sqlite-utils",
]
[project.urls]
Homepage = "https://github.com/datasette/datasette-enrichments-quickjs"
Changelog = "https://github.com/datasette/datasette-enrichments-quickjs/releases"
Issues = "https://github.com/datasette/datasette-enrichments-quickjs/issues"
CI = "https://github.com/datasette/datasette-enrichments-quickjs/actions"
[project.entry-points.datasette]
enrichments_quickjs = "datasette_enrichments_quickjs"
[project.optional-dependencies]
test = ["pytest", "pytest-asyncio", "pytest-timeout"]
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.setuptools.package-data]
datasette_enrichments_quickjs = ["templates/*"]