-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (28 loc) · 832 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (28 loc) · 832 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
[tool.poetry]
name = "twaddle"
version = "1.10.0"
description = "Text generation and templating"
authors = ["Chris Hengler <chrysics@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "twaddle" }]
include = ["twaddle/py.typed"]
[tool.poetry.urls]
documentation = "https://chrishengler.github.io/twaddle/"
repository = "https://github.com/chrishengler/twaddle"
[tool.poetry.dependencies]
python = ">=3.11"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.0"
lark = "^1.3.1"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
[tool.black]
# Exclude generated parser
exclude = '(^|/)twaddle/parser/twaddle_parser.py$'
[tool.isort]
profile = "black"
skip = ["twaddle/parser/twaddle_parser.py"]