-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 950 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 950 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "datasette-auth-github"
version = "0.14"
description = "Datasette plugin and ASGI middleware that authenticates users against GitHub"
readme = "README.md"
authors = [{name = "Simon Willison"}]
license = "Apache-2.0"
requires-python = ">=3.10"
dependencies = [
"datasette"
]
[project.urls]
Homepage = "https://github.com/simonw/datasette-auth-github"
Changelog = "https://github.com/simonw/datasette-auth-github/releases"
Issues = "https://github.com/simonw/datasette-auth-github/issues"
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
"sqlite-utils",
"pytest-httpx",
]
[project.entry-points.datasette]
auth_github = "datasette_auth_github"
[tool.setuptools.packages.find]
where = ["."]
include = ["datasette_auth_github*"]
[tool.setuptools.package-data]
datasette_auth_github = ["templates/*.html"]