-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (31 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
35
36
37
[project]
name = "datasette-edit-schema"
version = "0.8a3"
description = "Datasette plugin for modifying table schemas"
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.0a13",
"sqlite-utils>=3.35",
]
[project.urls]
Homepage = "https://datasette.io/plugins/datasette-edit-schema"
Changelog = "https://github.com/simonw/datasette-edit-schema/releases"
Issues = "https://github.com/simonw/datasette-edit-schema/issues"
CI = "https://github.com/simonw/datasette-edit-schema/actions"
[project.entry-points.datasette]
edit_schema = "datasette_edit_schema"
[project.optional-dependencies]
test = ["pytest", "pytest-asyncio", "beautifulsoup4", "html5lib"]
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.setuptools]
packages = ["datasette_edit_schema"]
[tool.setuptools.package-data]
datasette_edit_schema = ["templates/*", "static/*"]