forked from jorgebodega/dotpyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (51 loc) · 1.09 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
[tool.poetry]
name = "dotpyle"
version = "0.1.0"
description = "Test"
authors = ["Jorge Bodega <[email protected]>", "Perseo Gutiérrez <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
GitPython = "^3.1.12"
Cerberus = "^1.3.2"
PyYAML = "^5.4.1"
rich = "^10.1.0"
click = "^8.0.1"
setuptools = "^57.4.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^20.8b1"
coveralls = "^3.0.1"
pylint = "^2.6.0"
pep8 = "^1.7.1"
pre-commit = "^2.9.3"
pytest-cov = "^2.10.1"
poethepoet = "^0.10.0"
pytest-print = "^0.2.1"
rope = "^0.19.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
dotpyle = "dotpyle.main:main"
test = "pytest:main"
[tool.poe.tasks]
black = "black ."
clear-cache = "rm -rf **/__pycache__/**"
cov-report = "coverage report -m"
pylint = "pylint dotpyle/ tests/"
test = "pytest"
test-cov = "coverage run --source=dotpyle -m pytest"
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38']
exclude = '''
/(
| \.git
| \.venv
| buck-out
| build
| dist
)/
'''
verbose = true