-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (64 loc) · 1.68 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
69
70
[tool.poetry]
name = "dotpyle"
version = "0.1.4"
description = "Dotpyle is a Python implementation of a dotfile system manager, allowing users to keep a secure copy of all program configurations remotely, create different profiles, etc."
authors = [
"Jorge Bodega <jorge.bodega.f@gmail.com>",
"Perseo Gutiérrez <perseo.gi98@gmail.com>"
]
maintainers = [
"Jorge Bodega <jorge.bodega.f@gmail.com>",
"Perseo Gutiérrez <perseo.gi98@gmail.com>"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jorgebodega/dotpyle"
repository = "https://github.com/jorgebodega/dotpyle"
[tool.poetry.dependencies]
python = "^3.9"
GitPython = "^3.1.24"
Cerberus = "^1.3.2"
PyYAML = "^5.4.1"
rich = "^12.0.0"
click = "^8.0.1"
setuptools = "^65.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1"
black = "^22.3.0"
coveralls = "^3.0.1"
pylint = "^2.6.0"
pep8 = "^1.7.1"
pre-commit = "^2.9.3"
pytest-cov = "^3.0.0"
poethepoet = "^0.16.0"
pytest-print = "^0.3.0"
debugpy = "^1.6.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 ."
black-check = "black --check --quiet ."
clear-cache = "rm -rf **/__pycache__/**"
cov-report = "coverage report -m"
pylint = "pylint --output-format colorized dotpyle/ tests/"
pylint-check = "pylint --fail-under 5 --output-format colorized dotpyle/ tests/"
test = "pytest"
test-cov = "coverage run --source=dotpyle -m pytest"
[tool.black]
line-length = 80
experimental-string-processing = true
target-version = ['py36', 'py37', 'py38']
exclude = '''
/(
| \.git
| \.venv
| buck-out
| build
| dist
)/
'''
verbose = true