-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 915 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 915 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
[tool.poetry]
name = "summon-tasks"
version = "0.3.0"
description = ""
authors = ["Tarcísio Eduardo Moreira Crocomo <tarcisioe@pm.me>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "summon" },
]
[tool.poetry.dependencies]
python = "^3.8.1"
typer = "^0.9.0"
pluggy = "^1.3.0"
typing-extensions = "^4.8.0"
[tool.poetry.scripts]
summon = "summon.__main__:main"
[tool.poetry.dev-dependencies]
mypy = "^1.5.1"
pylint = "^2.17.6"
flake8 = "^6.1.0"
black = "^23.9.1"
isort = "^5.12.0"
flake8-bugbear = "^23.9.16"
summon-python = "^0.2.0"
pytest = "^7.4.2"
pytest-datadir = "^1.4.1"
pytest-mock = "^3.11.1"
pytest-cov = "^4.1.0"
pre-commit = "^3.4.0"
[tool.summon.plugins.python]
test-modules = ["tests"]
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = "pluggy"
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"