58 lines
1.7 KiB
TOML
58 lines
1.7 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=80.9", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mydbengine"
|
|
version = "0.1.0"
|
|
description = "A lightweight, git-inspired database engine that maintains complete history of all modifications"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = "MIT"
|
|
authors = [
|
|
{name = "Kodjo Sossouvi", email = "kodjo.sossouvi@gmail.com"}
|
|
]
|
|
maintainers = [
|
|
{name = "Kodjo Sossouvi", email = "kodjo.sossouvi@gmail.com"}
|
|
]
|
|
keywords = ["database", "versioning", "history", "git-inspired", "snapshot"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Database",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: System :: Archiving",
|
|
]
|
|
|
|
dependencies = []
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest==8.4.2",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://gitea.sheerka.synology.me/kodjo/MyDbEngine"
|
|
Documentation = "https://gitea.sheerka.synology.me/kodjo/MyDbEngine#readme"
|
|
Repository = "https://gitea.sheerka.synology.me/kodjo/MyDbEngine"
|
|
Issues = "https://gitea.sheerka.synology.me/kodjo/MyDbEngine/issues"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
packages = ["dbengine"]
|
|
|
|
[tool.setuptools.package-data]
|
|
dbengine = ["py.typed"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py"]
|
|
python_classes = ["Test*"]
|
|
python_functions = ["test_*"] |