-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.06 KB
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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/thub"]
[tool.hatch.build]
include = [
"src/thub/**/*.py",
"src/thub/static_assets/**/*"
]
[tool.hatch.version]
path = "src/thub/__init__.py"
[project]
dynamic = ["version"]
name = "thub"
authors = [
{name = "Nicholas H.Tollervey", email = "ntoll@ntoll.org"}
]
maintainers = [
{name = "Nicholas H.Tollervey", email = "ntoll@ntoll.org"}
]
description = "Simple self-hosting of PyScript apps and infrastructure."
readme = "README.md"
license = "MIT"
license-files = ["LICEN[CS]E.*"]
dependencies = [
"fastapi==0.123.3",
"uvicorn[standard]==0.38.0",
"httpx==0.28.1",
"structlog==25.5.0",
"rich==14.2.0",
"pyjwt==2.10.1",
"websockets==14.1",
"python-multipart==0.0.20",
"platformdirs==4.5.1"
]
[project.scripts]
thub = "thub.cli:main"
[project.optional-dependencies]
dev = [
"black==25.1.0",
"build==1.2.2.post1",
"hatch==1.14.1",
"pytest==9.0.1",
"pytest-asyncio==1.3.0",
"pytest-cov==6.2.1",
"twine==6.1.0"
]