-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
81 lines (71 loc) · 1.83 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
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fps"
dynamic = ["version"]
description = "A system for creating modular, configurable, pluggable and concurrent applications"
readme = "README.md"
authors = [
{ name = "Jupyter Development Team", email = "[email protected]" },
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Typing :: Typed",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">= 3.9"
dependencies = [
"anyio",
"anyioutils >=0.7.0,<0.8.0",
"click >=8.1.8,<9",
"structlog",
"exceptiongroup; python_version<'3.11'",
"importlib_metadata >=3.6; python_version<'3.10'",
]
[project.optional-dependencies]
web = [
"fastapi",
"anycorn >=0.18.1,<0.19.0",
]
test = [
"pytest >=8,<9",
"trio >=0.27.0,<0.28",
"mypy",
"ruff",
"coverage[toml] >=7,<8",
"httpx",
"pydantic",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
]
[project.urls]
Source = "https://github.com/jupyter-server/fps"
Issues = "https://github.com/jupyter-server/fps/issues"
[project.scripts]
fps = "fps._cli:main"
[project.entry-points]
"fps.modules" = {fps_module = "fps:Module"}
[tool.hatch.version]
path = "src/fps/__init__.py"
[tool.hatch.build.targets.sdist]
include = ["src/fps"]
[tool.hatch.build.targets.wheel]
ignore-vcs = true
packages = ["src/fps"]
[tool.coverage.run]
source = ["fps", "tests"]
[tool.coverage.report]
show_missing = true