-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 772 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 772 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
[build-system]
requires = ["setuptools==70.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["routes"]
[project]
name = "lightberry"
# lightberry.__version__
version = "1.3.6"
authors = [
{ name = "zNitche" },
]
description = "lightweight async web framework for Raspberry Pi Pico W"
readme = "README.md"
classifiers = [
"Environment :: Web",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: MicroPython",
"License :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/zNitche/lightberryAPI"
Issues = "https://github.com/zNitche/lightberryAPI/issues"