-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (38 loc) · 1.09 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "django-xformula"
version = "0.1.3"
description = "Django query evaluator, is built on top of XFormula language front-end."
authors = ["Ertuğrul Keremoğlu <ertugkeremoglu@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "django_xformula", from = "src" }]
[tool.poetry.dependencies]
python = "^3.11"
django = "*"
xformula = "^0.1.1"
[tool.poetry.group.dev.dependencies]
black = ">=22.10,<25.0"
commitizen = "^2.35.0"
django-stubs = { extras = ["compatible-mypy"], version = "^1.13.0" }
isort = "^5.10.1"
mypy = "^0.982"
pycln = "^2.1.1"
[tool.poetry.group.rel.dependencies]
build = "^0.8.0"
twine = "^4.0.1"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.0"
tag_format = "v$minor.$major.$patch$prerelease.$devrelease"
version_files = [
"pyproject.toml:tool.poetry.version",
"src/django_xformula/__version__.py:__version__",
]
[tool.isort]
profile = "black"
known_first_party = ["django_xformula", "django_xformula_unittests"]
[tool.pycln]
all = true