-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
72 lines (61 loc) · 1.36 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "sirqle"
version = "0.4.4"
authors = [{ name = "Pythia Dev Team", email = "[email protected]" }]
description = "SurrealDB Query Interface"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"python-dotenv",
"surrealdb2>=0.3.2",
]
license = { file = "LICENSE" }
[project.urls]
Source = "https://github.com/PythiaSocialTech/sirqle"
[tool.setuptools.packages.find]
where = ["src"]
include = ["sirqle*"]
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
"pytest-asyncio",
"pytest-dependency",
"commitizen",
"flit",
"Faker",
]
docs = [
"mkdocs",
"mkdocstrings",
'mkdocs-material',
"mkdocs-literate-nav",
"mkdocstrings[python]>=0.18",
"mkdocs-gen-files",
"mkdocs-literate-nav",
]
[tool.black]
line-length = 88
[tool.pycln]
all = true
[tool.isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.4.4"
version_files = ["pyproject.toml:version"]
tag_format = "v$version"
bump_message = "bump: $current_version → $new_version [skip ci]"
[tool.pytest.ini_options]
testpaths = 'tests'
asyncio_mode = 'strict'
[tool.ruff]
ignore = ['F401']