-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
34 lines (29 loc) · 1.01 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
[project]
name = "datasette-query-assistant"
version = "0.1a2"
description = "Query databases and tables with AI assistance"
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",
"anthropic"
]
[project.urls]
Homepage = "https://github.com/datasette/datasette-query-assistant"
Changelog = "https://github.com/datasette/datasette-query-assistant/releases"
Issues = "https://github.com/datasette/datasette-query-assistant/issues"
CI = "https://github.com/datasette/datasette-query-assistant/actions"
[project.entry-points.datasette]
query_assistant = "datasette_query_assistant"
[project.optional-dependencies]
test = ["inline-snapshot", "pytest", "pytest-asyncio", "pytest-recording", "sqlite-utils"]
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.setuptools.package-data]
datasette_query_assistant = ["templates/*"]