forked from datasette/datasette-enrichments-gpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (29 loc) · 1.03 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-enrichments-ollama"
version = "0.1"
description = "Datasette enrichment for analyzing row data using a locally hosted - or remote - ollama instance"
readme = "README.md"
authors = [{name = "Marcus Davidson"}]
license = {text = "Apache-2.0"}
classifiers=[
"Framework :: Datasette",
"License :: OSI Approved :: Apache Software License"
]
requires-python = ">=3.8"
dependencies = [
"datasette-enrichments>=0.2",
"sqlite-utils"
]
[project.urls]
Homepage = "https://github.com/mdav43/datasette-enrichments-ollama"
Changelog = "https://github.com/mdav43/datasette-enrichments-ollama/releases"
Issues = "https://github.com/mdav43/datasette-enrichments-ollama/issues"
CI = "https://github.com/mdav43/datasette-enrichments-ollama/actions"
[project.entry-points.datasette]
enrichments_ollama = "datasette_enrichments_ollama"
[project.optional-dependencies]
test = ["pytest", "pytest-asyncio"]
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.setuptools.package-data]
datasette_enrichments_gpt = ["templates/*"]