Some checks failed
build / lint (push) Successful in 2m15s
build / tests (ubuntu-latest, 3.10) (push) Successful in 24s
build / tests (ubuntu-latest, 3.11) (push) Successful in 21s
build / tests (ubuntu-latest, 3.12) (push) Successful in 22s
build / tests (ubuntu-latest, 3.13) (push) Successful in 17s
build / tests (ubuntu-latest, 3.14) (push) Successful in 46s
build / tests (ubuntu-latest, 3.8) (push) Successful in 39s
build / tests (ubuntu-latest, 3.9) (push) Successful in 22s
build / tests-micropython (push) Successful in 12s
build / tests-circuitpython (push) Successful in 12s
build / coverage (push) Failing after 49s
build / benchmark (push) Successful in 55s
build / tests (macos-latest, 3.10) (push) Has been cancelled
build / tests (macos-latest, 3.11) (push) Has been cancelled
build / tests (macos-latest, 3.12) (push) Has been cancelled
build / tests (macos-latest, 3.13) (push) Has been cancelled
build / tests (macos-latest, 3.14) (push) Has been cancelled
build / tests (macos-latest, 3.8) (push) Has been cancelled
build / tests (macos-latest, 3.9) (push) Has been cancelled
build / tests (windows-latest, 3.10) (push) Has been cancelled
build / tests (windows-latest, 3.11) (push) Has been cancelled
build / tests (windows-latest, 3.12) (push) Has been cancelled
build / tests (windows-latest, 3.13) (push) Has been cancelled
build / tests (windows-latest, 3.14) (push) Has been cancelled
build / tests (windows-latest, 3.8) (push) Has been cancelled
build / tests (windows-latest, 3.9) (push) Has been cancelled
56 lines
1.1 KiB
TOML
56 lines
1.1 KiB
TOML
[project]
|
|
name = "microdot"
|
|
version = "2.5.2.dev0"
|
|
authors = [
|
|
{ name = "Miguel Grinberg", email = "miguel.grinberg@gmail.com" },
|
|
]
|
|
description = "The impossibly small web framework for MicroPython"
|
|
classifiers = [
|
|
"Environment :: Web Environment",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: Implementation :: MicroPython",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
]
|
|
|
|
[project.readme]
|
|
file = "README.md"
|
|
content-type = "text/markdown"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/miguelgrinberg/microdot"
|
|
"Bug Tracker" = "https://github.com/miguelgrinberg/microdot/issues"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"tox",
|
|
]
|
|
docs = [
|
|
"sphinx",
|
|
"furo",
|
|
"pyjwt",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
zip-safe = false
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.package-dir]
|
|
"" = "src"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = [
|
|
"src",
|
|
]
|
|
namespaces = false
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools>=61.2",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|