-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 889 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 889 Bytes
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-graphql"
version = "3.0a1"
description = "Datasette plugin providing an automatic GraphQL API for your SQLite databases"
readme = "README.md"
authors = [{name = "Simon Willison"}]
license = "Apache-2.0"
requires-python = ">=3.10"
dependencies = [
"datasette>=1.0a20",
"graphene>=3.1.0,<4.0",
"graphql-core>=3.2.1",
"sqlite-utils",
]
[project.urls]
Homepage = "https://github.com/simonw/datasette-graphql"
Issues = "https://github.com/simonw/datasette-graphql/issues"
CI = "https://github.com/simonw/datasette-graphql/actions"
Changelog = "https://github.com/simonw/datasette-graphql/releases"
[project.entry-points.datasette]
graphql = "datasette_graphql"
[dependency-groups]
dev = [
"pytest",
"pytest-asyncio",
]
[build-system]
requires = ["uv_build>=0.9.18,<1"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = ""