generated from simonw/datasette-plugin-template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (28 loc) · 898 Bytes
/
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
[project]
name = "datasette-import"
version = "0.1a5"
description = "Tools for importing data into Datasette"
readme = "README.md"
authors = [{name = "Datasette"}]
license = {text = "Apache-2.0"}
classifiers=[
"Framework :: Datasette",
"License :: OSI Approved :: Apache Software License"
]
requires-python = ">=3.8"
dependencies = [
"datasette>=1.0a13"
]
[project.urls]
Homepage = "https://github.com/datasette/datasette-import"
Changelog = "https://github.com/datasette/datasette-import/releases"
Issues = "https://github.com/datasette/datasette-import/issues"
CI = "https://github.com/datasette/datasette-import/actions"
[project.entry-points.datasette]
import = "datasette_import"
[project.optional-dependencies]
test = ["pytest", "pytest-asyncio"]
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.setuptools.package-data]
datasette_import = ["static/*", "templates/*"]