Forge
f8555a15
1[build-system]
2requires = ["hatchling>=1.24"]
3build-backend = "hatchling.build"
4
5[project]
6name = "pywitdb"
7version = "0.1.0"
8description = "Python bindings for WitDatabase (.witdb embedded ACID store)"
9readme = "README.md"
10license = "Apache-2.0"
11requires-python = ">=3.11"
12authors = [{ name = "AI-Guiders" }]
13keywords = ["witdatabase", "witdb", "embedded", "database", "acid"]
14classifiers = [
15 "Development Status :: 2 - Pre-Alpha",
16 "Intended Audience :: Developers",
17 "License :: OSI Approved :: Apache Software License",
18 "Programming Language :: Python :: 3",
19 "Programming Language :: Python :: 3.11",
20 "Programming Language :: Python :: 3.12",
21 "Programming Language :: Python :: 3.13",
22 "Topic :: Database",
23]
24dependencies = []
25
26[project.optional-dependencies]
27dev = ["pytest>=8.0"]
28
29[project.urls]
30Homepage = "https://github.com/AI-Guiders/pywitdb"
31Repository = "https://github.com/AI-Guiders/pywitdb"
32Issues = "https://github.com/AI-Guiders/pywitdb/issues"
33"WitDatabase upstream" = "https://github.com/dmitrat/WitDatabase"
34
35[tool.hatch.build.targets.wheel]
36packages = ["src/pywitdb"]
37
38[tool.pytest.ini_options]
39testpaths = ["tests"]
40pythonpath = ["src"]
41
View only · write via MCP/CIDE