-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (61 loc) · 2.08 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jupyterhub-dossier"
authors = [
{name = "Iacopo Colonnelli", email = "[email protected]"}
]
description = "Dossier multi-tenant JupyterHub extension"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "LGPL-3.0-or-later"}
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: System Administrators",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: System :: Distributed Computing"
]
dynamic = ["dependencies", "optional-dependencies", "version"]
[project.scripts]
dossier = "dossier.app:main"
[project.urls]
Package = "https://pypi.org/project/dossier"
Repository = "https://github.com/alpha-unito/dossier"
Docker = "https://hub.docker.com/r/alphaunito/dossier"
[project.entry-points]
"jupyterhub.authenticators" = {"dossier" = "dossier.auth.oauth:DossierOAuthenticator"}
"jupyterhub.spawners" = {"dossier" = "dossier.spawners.kubespawner:DossierKubeSpawner"}
[tool.setuptools]
packages = [
"dossier",
"dossier.auth",
"dossier.handlers",
"dossier.spawners"
]
py-modules = ["build"]
zip-safe = false
[tool.setuptools.dynamic.optional-dependencies]
bandit = {file = "bandit-requirements.txt"}
lint = {file = "lint-requirements.txt"}
test = {file = "test-requirements.txt"}
[tool.setuptools.cmdclass]
build_py = "build.build_py"
css = "build.css"
js = "build.npm"
sdist = "build.sdist"
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
version = {attr = "dossier.version.VERSION"}