-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
52 lines (43 loc) · 957 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "typeo"
version = "0.1.6"
description = "Utilities for running functions as scripts"
authors = ["Alec Gunny <alec.gunny@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
toml = "^0.10.2"
[tool.poetry.group.test.dependencies]
pytest = "^6.2"
pytest-depends = "^1.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^4.1"
sphinx-material = "^0.0.34"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.20.0"
[build-system]
requires = ["poetry>=1.2.0a2"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
markers = [
"gtpy38: tests for python version 3.9 and higher",
"gtpy39: tests for pythong version 3.10 and higher"
]
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.tox
| _build
| dist
| docs
)/
'''
[tool.isort]
known_first_party = ["typeo"]
multi_line_output = 3
include_trailing_comma = true