-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
89 lines (76 loc) · 1.62 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
82
83
84
85
86
87
88
89
[tool.poetry]
name = "pel"
version = "0.0.0"
description = "The most elegant build system."
readme = "README.md"
authors = ["Neocrym Records Inc. <[email protected]>"]
homepage = "https://github.com/neocrym/pel"
repository = "https://github.com/neocrym/pel"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
[tool.poetry.dev-dependencies]
pytest = "^7.0"
vendorize = "^0.2.2"
isort = "^5.10.1"
black = "^22.1.0"
pylint = "^2.12.2"
mypy = "^0.931"
pyinstaller = "^4.9"
pyclean = "^2.0.0"
[tool.poetry.scripts]
pel = 'pel.console:run'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
| \.git
| \.mypy_cache
| \.venv
| venv
| _vendor
)/
)
'''
[tool.isort]
known_first_party = ["pel"]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
skip = [".git", ".mypy_cache", ".venv", "venv", "_vendor"]
[tool.mypy]
python_version = "3.8"
follow_imports = "silent"
strict = true
exclude = [
'^pel/_vendor'
]
[[tool.mypy.overrides]]
module = [
"pytest",
]
ignore_missing_imports = true
[tool.pylint]
[tool.pylint.master]
ignore = ['.git', '.mypy_cache', '.venv', 'venv', '_vendor']
disable = [
'exec-used',
'protected-access',
'wildcard-import',
'unused-wildcard-import',
'no-self-use',
'too-many-instance-attributes',
'duplicate-code'
]