-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (37 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
47 lines (37 loc) · 1.02 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Notes on how to do a release.
#
# * Bump `__version__` and commit.
# * git tag vx.y
# * git push origin main vx.y
# * flit publish
# ===== Project info
[project]
dynamic = ["version"]
name = "itemdb"
description = "Easy transactional database for Python dicts, backed by SQLite"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Almar Klein" }]
keywords = ["database", "sqlite", "no-sql"]
requires-python = ">= 3.7"
dependencies = []
[project.optional-dependencies]
lint = ["ruff"]
tests = ["pytest"]
docs = ["sphinx", "sphinx_rtd_theme"]
dev = ["itemdb[lint,tests, docs]"]
[project.urls]
Homepage = "https://github.com/almarklein/itemdb"
Documentation = "http://itemdb.readthedocs.io"
Repository = "https://github.com/almarklein/itemdb"
# ===== Building
# Flit is great solution for simple pure-Python projects.
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
# ===== Tooling
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["F", "E", "W", "B", "RUF"]
ignore = []