-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.1 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
37
38
39
40
41
42
[project]
name = "datasette-extract"
version = "0.1a8"
description = "Import unstructured data (text and images) into structured tables"
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>=1.0a12",
"datasette-secrets>=0.1a2",
"sqlite-utils",
"openai>=1.0",
"ijson",
"python-ulid",
"starlette",
]
[project.urls]
Homepage = "https://github.com/datasette/datasette-extract"
Changelog = "https://github.com/datasette/datasette-extract/releases"
Issues = "https://github.com/datasette/datasette-extract/issues"
CI = "https://github.com/datasette/datasette-extract/actions"
[project.entry-points.datasette]
extract = "datasette_extract"
[project.optional-dependencies]
test = ["pytest", "pytest-asyncio", "pytest-recording"]
[tool.setuptools.packages.find]
where = ["."]
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.setuptools.package-data]
datasette_extract = ["static/*", "templates/*"]