-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (25 loc) · 914 Bytes
/
pyproject.toml
File metadata and controls
27 lines (25 loc) · 914 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "microdbx"
version = "0.1.0"
description = "Lightweight key-value database for microcontrollers with Flash and RAM storage backends."
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "netcorelink" }]
requires-python = ">=3.8"
keywords = ["db", "flash", "ram", "microcontroller", "micropython", "iot"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Typing :: Typed"
]
dependencies = []
[project.urls]
Homepage = "https://github.com/netcorelink/microdbx"
Repository = "https://github.com/netcorelink/microdbx"
Documentation = "https://github.com/netcorelink/microdbx#readme"