-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (41 loc) · 1019 Bytes
/
pyproject.toml
File metadata and controls
56 lines (41 loc) · 1019 Bytes
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "xformula"
version = "0.1.1"
description = "Highly customizable language front-end, aimed to be a base for custom DSL evaluators."
authors = ["Ertuğrul Keremoğlu <ertugkeremoglu@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [
{include = "xformula", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.11"
lark = ">=1.1.4"
[tool.poetry.group.dev.dependencies]
black = ">=22.10,<27.0"
commitizen = "^2.35.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/xformula/__version__.py:__version__",
]
[tool.isort]
profile = "black"
known_first_party = [
"xformula",
"xformula_unittests",
]
[tool.pycln]
all = true