generated from zmievsa/python-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
50 lines (43 loc) · 1.03 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "tortoise-orm-stubs"
version = "1.0.2"
description = "Type stubs that make tortoise-orm a lot easier to work with when using type checkers."
packages = [{ include = "tortoise-stubs" }]
authors = ["Stanislav Zmiev <zmievsa@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/zmievsa/tortoise-orm-stubs"
[tool.poetry.dependencies]
python = "^3.8"
tortoise-orm = "*"
[tool.poetry.dev-dependencies]
pyupgrade = "^2.37.3"
black = "^22.8.0"
autoflake = "^1.5.3"
pytest = "^7.1.3"
pytest-cov = "^3.0.0"
isort = "^5.10.1"
mypy = "^0.971"
pysh = "^3.0.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.html]
skip_covered = true
skip_empty = true
[tool.coverage.report]
omit = []
fail_under = 90
skip_covered = true
skip_empty = true
show_missing = true
[tool.isort]
profile = "black"
multi_line_output = 3
skip_gitignore = true
skip_glob = []
line_length = 120
lines_between_sections = 1
[tool.black]
line-length = 120
target_version = ['py38']