Add an initial project and module

This commit is contained in:
Andrew Mulbrook 2026-03-15 18:33:28 -05:00
parent 92498dec09
commit 8955ae39e4
2 changed files with 34 additions and 0 deletions

33
pyproject.toml Normal file
View file

@ -0,0 +1,33 @@
[build-system]
requires = ["setuptools>=61", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "trove"
dynamic = ["version"]
description ="Python project for writing, note taking, and information management with hype-free AI support"
license = "AGPL-3.0-or-later"
requires-python = ">=3.11"
dependencies = []
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"ruff",
]
[tool.setuptools_scm]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["trovedb"]

1
trovedb/__init__.py Normal file
View file

@ -0,0 +1 @@