-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (44 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
47
48
49
50
51
52
[tool.poetry]
name = "vinte_uno"
version = "0.1.0"
description = "A simple blackjack game made in Python3"
authors = ["Fred Campos <fred.tecnologia@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.6.1"
transitions = "^0.8.1"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
bump2version = "^0.5.11"
cohesion = "^1.0.0"
darglint = "^1.3.0"
dlint = "^0.10.3"
epc = "^0.0.5"
flake8-cognitive-complexity = "^0.0.2"
flake8-executable = "^2.0.3"
flake8-expression-complexity = "^0.0.7"
flake8-functions = "^0.0.4"
flake8-logging-format = "^0.6.0"
flake8-mock = "^0.3"
flake8-pie = "^0.5.0"
flake8-pytest-style = "^1.1.1"
flake8-variables-names = "^0.0.3"
importmagic3 = "^0.2.0"
ipython = "^7.14.0"
monkeytype = "^20.4.2"
mypy = "^0.770"
pip = "^20.1.0"
py-make = "^0.1.1"
pylint = "^2.5.2"
pytest = "^5.4.1"
pytest-cov = "^2.8.1"
pytest-mock = "^3.1.0"
sphinx = "^1.8.5"
tox = "^3.14.6"
watchdog = "^0.9.0"
wemake-python-styleguide = "^0.14.0"
[tool.black]
line-length = 100
skip-string-normalization = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"