-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.1 KB
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.pdm]
[tool.pdm.dev-dependencies]
dev = [
"pytest<7.0.0,>=6.2.4",
"black<22.0,>=21.6b0",
"taskipy<2.0.0,>=1.8.1",
"pytest-cov<3.0.0,>=2.12.1",
"coveralls<4.0.0,>=3.1.0",
"responses<1.0.0,>=0.13.3",
"mypy<1.0,>=0.910",
]
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
authors = [{ name = "antoniouaa", email = "antoniouaa@hotmail.com" }]
license = { text = "MIT" }
requires-python = "<4.0,>=3.7"
dependencies = [
"requests<3.0.0,>=2.26.0",
"click<9.0.0,>=8.0.1",
"tomli<2.0.0,>=1.0.4",
"types-requests<3.0.0,>=2.25.6",
]
name = "krypto"
version = "0.1.0"
description = "A python API that creates issues in your repos based on TODO: comments in your code"
[project.scripts]
krypto = "krypto:cli"
[tool.taskipy.tasks]
test = { cmd = "echo pytest -vvv --cov=krypto && pytest -vvv --cov=krypto", help = "Run all the tests" }
mypy = { cmd = "echo mypy ./krypto/ && mypy ./krypto/", help = "Run type checking" }
[tool.mypy]
ignore_missing_imports = true
# Example config
[tool.krypto]
prefix = "TODO"
src = "krypto"