-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 1017 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (33 loc) · 1017 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "hapiserver"
dynamic = ["version"]
description = "Generic HAPI server implementation in Python"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.6"
dependencies = [
"fastapi>=0.97",
"uvicorn>=0.22",
"utilrsw[uvicorn,time] @ git+https://github.com/rweigel/utilrsw.git@main",
"hapiclient"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/hapi-server/server-python-generic"
[project.optional-dependencies]
dev = ["pytest", "requests", "gunicorn", "check-manifest", "tox", "tox-uv"]
[project.scripts]
hapiserver = "hapiserver:run_cli"
[tool.setuptools.dynamic]
version = { attr = "hapiserver.__version__" }
[tool.setuptools.packages.find]
exclude = ["tests", "docs"]
[tool.setuptools.package-data]
hapiserver = ["html/**/*", "openapi.json"]