-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (72 loc) · 1.51 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
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pro-filer" # TODO: ALTERAR
version = "0.1.0"
description = "" # TODO: PREENCHER
readme = "readme.md"
requires-python = ">=3.8"
dependencies = ["rich==13.4.1", "typer==0.9.0", "shellingham==1.5.0.post1"]
[project.scripts]
pro-filer = "pro_filer.__main__:typer_app"
[tool.setuptools]
py-modules = ['pro_filer']
[tool.pytest.ini_options]
minversion = "7.3"
addopts = "-vv -s --continue-on-collection-errors"
testpaths = ["tests",]
accept_xfail = true
filterwarnings = [
"ignore::pytest.PytestDeprecationWarning",
]
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 79
[project.optional-dependencies]
test = [
"pytest-dependency@git+https://github.com/betrybe/pytest-dependency@984f9d7d083870d091e8862a9b9c33fdf815b8d9",
"faker==18.9.0",
"pytest==7.3.1",
"pytest-cov==4.1.0",
"pytest-json==0.4.0",
]
alltest = [
"pro_filer[test]",
"coverage==7.2.6",
"iniconfig==2.0.0",
"packaging==23.1",
"pluggy==1.0.0",
]
dev = [
"pro_filer[test]",
"black==23.3.0",
"flake8==6.0.0",
"isort==5.12.0",
]
alldev = [
"pro_filer[dev]",
"pro_filer[alltest]",
"click==8.1.3",
"mccabe==0.7.0",
"pathspec==0.11.1",
"platformdirs==3.5.1",
"pycodestyle==2.10.0",
"pyflakes==3.0.1",
]