Added pyproject.toml
This commit is contained in:
58
pyproject.toml
Normal file
58
pyproject.toml
Normal file
@@ -0,0 +1,58 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=80.9", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "dbengine"
|
||||
version = "1.0.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_*"]
|
||||
Reference in New Issue
Block a user