-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpyproject.toml
42 lines (34 loc) · 976 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
34
35
36
37
38
39
40
41
42
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project]
name = "fps_contents"
description = "An FPS plugin for the contents API"
keywords = ["jupyter", "server", "fastapi", "plugins"]
requires-python = ">=3.8"
dependencies = [
"watchfiles >=0.18.1,<1",
"aiosqlite >=0.17.0,<1",
"anyio>=3.6.2,<4",
"jupyverse-api >=0.1.2,<1",
]
dynamic = [ "version",]
[[project.authors]]
name = "Jupyter Development Team"
email = "[email protected]"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "BSD 3-Clause License"
[project.urls]
Homepage = "https://jupyter.org"
[tool.check-manifest]
ignore = [ ".*",]
[tool.jupyter-releaser]
skip = [ "check-links",]
[project.entry-points]
"asphalt.components" = {contents = "fps_contents.main:ContentsComponent"}
"jupyverse.components" = {contents = "fps_contents.main:ContentsComponent"}
[tool.hatch.version]
path = "fps_contents/__init__.py"