-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.3 KB
/
pyproject.toml
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
48
49
[project]
description = "Fast, Immutable, Transactional: Pick three."
name = "blackledger"
version = "0.1.0"
authors = [{ name = "Sean Harrison", email = "[email protected]" }]
license = { text = "MPL 2.0" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
]
dependencies = [
"Jinja2~=3.1.4",
"orjson~=3.10.6",
"psycopg[binary,pool]~=3.2.1",
"pydantic~=2.8.2",
"pydantic-settings~=2.4.0",
"PyJWT~=2.8.0",
"sqly[migration] @ git+https://github.com/kruxia/sqly@main#egg=sqly",
]
[project.optional-dependencies]
http = ["fastapi~=0.112.2", "gunicorn~=22.0.0", "uvicorn~=0.30.3"]
dev = ["ruff~=0.6.3", "ipython~=8.26.0", "twine~=5.1.1"]
test = [
"ruff~=0.6.3",
"dateparser~=1.2.0",
"httpx~=0.27.0",
"pytest~=8.3.2",
"pytest-asyncio~=0.23.8",
"pytest-cov~=5.0.0",
]
[build-system]
requires = ["setuptools>=45"] #, "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["blackledger"]
# [tool.setuptools_scm]
# write_to = "blackledger/__version__.py"
[tool.coverage.run]
omit = ["blackledger/tests/*", "blackledger/ui/**"]
[tool.coverage.report]
skip_covered = true