generated from simonw/datasette-plugin-template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (36 loc) · 1001 Bytes
/
pyproject.toml
File metadata and controls
45 lines (36 loc) · 1001 Bytes
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
43
44
[project]
name = "datasette-oauth"
version = "0.1a0"
description = "Datasette as an OAuth provider"
readme = "README.md"
authors = [{name = "Datasette"}]
license = "Apache-2.0"
classifiers=[
"Framework :: Datasette"
]
requires-python = ">=3.10"
dependencies = [
"datasette>=1.0a25"
]
[dependency-groups]
dev = [
"pytest",
"pytest-asyncio"
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["datasette_oauth*"]
[tool.setuptools.package-data]
datasette_oauth = ["templates/*.html"]
[project.urls]
Homepage = "https://github.com/datasette/datasette-oauth"
Changelog = "https://github.com/datasette/datasette-oauth/releases"
Issues = "https://github.com/datasette/datasette-oauth/issues"
CI = "https://github.com/datasette/datasette-oauth/actions"
[project.entry-points.datasette]
oauth = "datasette_oauth"
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"