-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
37 lines (32 loc) · 866 Bytes
/
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
[tool.poetry]
name = "frosch"
version = "0.1.9"
description = "Better runtime error messages"
authors = ["Patrick Haller <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/HallerPatrick/frosch"
repository = "https://github.com/HallerPatrick/frosch"
[tool.poetry.dependencies]
python = "^3.6"
colorama = "^0.4.4"
Pygments = "^2.7.2"
stack-data = ">=0.1,<0.3"
asttokens = "^2.0.4"
yapf = ">=0.30,<0.33"
cheap_repr = ">=0.4.5,<0.6.0"
[tool.poetry.dev-dependencies]
pylint = "^2.12.0"
pytest = "^7.0.1"
pytest-cov = "^3.0.0"
pytest-sugar = "^0.9.4"
mypy = "^0.931"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
example = "example.example:hello"
[tool.pylint.messages_control]
max-line-width = 100
disable = "eval-used"
ignore = "frosch/dt_hooks"