-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
76 lines (67 loc) · 1.69 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[project]
name = "volt-framework"
dynamic = ["version"]
authors = [
{ name="Nick Henderson", email="nick@trkl.dev" },
]
description = "A lightning-fast, opinionated web framework with a high-performance Zig substrate"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICEN[CS]E*"]
keywords = ["web", "framework", "http", "async", "performance", "zig"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = [
"jinja2",
]
[project.optional-dependencies]
# For developers using Volt in their work
dev = [
"pywatchman",
]
# For developing Volt
maintainer = [
"pytest",
"requests",
"uvicorn",
]
# For building Volt
build = [
"setuptools",
"setuptools_scm",
"build",
"wheel",
"twine",
]
[project.urls]
Homepage = "https://volt.trkl.dev"
Issues = "https://github.com/trkl-dev/volt/issues"
Source = "https://github.com/trkl-dev/volt"
[project.scripts]
volt = "volt.cli:main"
[tool.pyright]
reportAny = false
reportExplicitAny = false
[build-system]
requires = ["setuptools>=80", "wheel", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["volt"]
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
local_scheme = "no-local-version"
[tool.volt]
log_level = "DEBUG"
[tool.ruff]
line-length = 120