-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 1.16 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
[project]
name = "nanoroute"
version = "2.0.3"
description = "Small, fast, HTTP URL router"
readme = "ReadMe.md"
requires-python = ">=3.13"
license = { "file" = "License" }
authors = [{ "name" = "Vito Gamberini", "email" = "[email protected]" }]
keywords = ["WSGI"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
]
urls = { "Documentation" = "https://nanoroute.dev" }
dependencies = []
[build-system]
requires = ["py-build-cmake~=0.3.4"]
build-backend = "py_build_cmake.build"
[tool.py-build-cmake.module]
generated = "module"
[tool.py-build-cmake.sdist]
include = ["CMakeLists.txt", "src"]
[tool.py-build-cmake.cmake]
minimum_version = "3.25"
config = "Release"
build_type = "Release"
build_args = ["-j"]
[tool.py-build-cmake.mac.cmake.options]
"CMAKE_OSX_DEPLOYMENT_TARGET:STRING" = "13.3"
[tool.py-build-cmake.windows.cmake.options]
"CMAKE_MSVC_RUNTIME_LIBRARY:STRING" = "MultiThreaded"