-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
46 lines (40 loc) · 1.07 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
[tool.poetry]
name = "auto-optional"
version = "0.1.0"
description = "Adds the Optional type-hint to arguments where the default value is None"
authors = ["Luttik <[email protected]>"]
readme = "README.md"
repository = "https://github.com/Luttik/auto-optional"
homepage = "https://auto-optional.daanluttik.nl"
documentation = "https://auto-optional.daanluttik.nl"
[tool.poetry.scripts]
auto-optional = "auto_optional.main:app"
[tool.poetry.dependencies]
python = ">3.7, <4.0"
libcst = "^0.3.20"
typer = "^0.4.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
black = "^21.8b0"
isort = "^5.9.3"
invoke = "^1.6.0"
mypy = "^0.910"
flake8 = "^3.9.2"
flake8-annotations = "^2.6.2"
flake8-black = "^0.2.3"
flake8-isort = "^4.0.0"
pytest-cov = "^2.12.1"
codecov = "^2.1.12"
mkdocs = "^1.2.3"
mkdocs-material = "^7.2.6"
PyYAML = "^5.4.1"
pydantic = "^1.8.2"
types-PyYAML = "^5.4.10"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["auto_optional"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"