-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
68 lines (60 loc) · 1.6 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "dressup"
version = "0.1.1"
description = "Dress up"
authors = ["Paulo S. Costa <Paulo.S.Costa.5@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/pscosta5/dressup"
repository = "https://github.com/pscosta5/dressup"
documentation = "https://dressup.readthedocs.io"
include = ["dressup/translator.toml"]
[tool.poetry.urls]
Changelog = "https://github.com/pscosta5/dressup/releases"
[tool.poetry.dependencies]
python = "^3.6"
importlib-metadata = {version = "^1.5.0", python = "<3.8"}
typer = ">=0.1.1,<0.3.0"
colorama = "^0.4.3"
toml = "^0.10.1"
rich = "^1.2.2"
[tool.poetry.dev-dependencies]
pytest = "^5.4.3"
coverage = {extras = ["toml"], version = "^5.0.1"}
pytest-cov = "^2.9.0"
flake8 = "^3.8.2"
black = "^19.10b0"
flake8-black = "^0.2.0"
flake8-import-order = "^0.18.1"
flake8-bugbear = "^20.1.2"
flake8-bandit = "^2.1.2"
safety = "^1.9.0"
mypy = "^0.780"
pytype = {version = "^2020.6.1", python = ">=3.6,<3.8"}
flake8-annotations = "^2.0.0"
typeguard = "^2.8.0"
flake8-docstrings = "^1.5.0"
darglint = "^1.4.0"
xdoctest = "^0.11.0"
sphinx = "^3.0.4"
recommonmark = "^0.6.0"
pep8-naming = "^0.10.0"
flake8-rst-docstrings = "^0.0.13"
pytest-mock = "^3.1.0"
rope = "^0.17.0"
sphinx-autobuild = "^0.7.1"
sphinx-material = "^0.0.30"
[tool.poetry.scripts]
dressup = "dressup.console:app"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["dressup"]
omit = ["*/dressup/__main__.py"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"