-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 905 Bytes
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 905 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
[tool.poetry]
name = "luigi-gadd"
version = "0.3.0"
license = "MIT"
description = "Provides additional functionality to make Luigi more flexible"
homepage = "https://github.com/mikelynch/luigi-gadd"
repository = "https://github.com/mikelynch/luigi-gadd"
authors = ["Mike Lynch <me@msl.sh>"]
[tool.poetry.dependencies]
python = "^3.6"
luigi = "^3.0"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
isort = "^5.6"
mypy = "^0.812"
pytest = "^5.2"
tox = "^3.23"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 90
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = py36,py37,py38,py39
[testenv]
whitelist_externals = poetry
commands =
poetry install -v
poetry run black .
poetry run isort .
poetry run mypy src
poetry run pytest tests/
"""