-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (73 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
85 lines (73 loc) · 1.74 KB
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
[tool.poetry]
name = "mumoco"
version = "0.4.0"
description = "This is tool helps to work with multiple conan modules simultaneously."
license = "MIT"
homepage = "https://github.com/disroop/mumoco"
authors = ["michel <michel.meyer@disroop.ch>"]
[tool.poetry.urls]
Issues = "https://github.com/disroop/mumoco/issues"
[tool.poetry.dependencies]
python = "^3.8"
conan = "^1.36.0"
deserialize = "^1.8.1"
cli-ui = "^0.15.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
flake8 = "^3.9.2"
pytest-cov = "^2.12.1"
mypy = "^0.910"
black = "21.9b0"
isort = "^5.9.2"
bandit = "^1.7.0"
invoke = "^1.5.0"
pylint = "^2.12.2"
[tool.poetry.scripts]
mumoco = "mumoco.main:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.messages_control]
enable = ''',
unused-import,
unused-wildcard-import,
'''
disable = ''',
fixme,
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
'''
[tool.pylint.format]
max-line-length = 120
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
# [tool.flake8]
# Flake8 currently does not support pyproject.toml.
# See .flake8 instead.
[tool.mypy]
files = "mumoco/**/*.py"
allow_untyped_decorators = false
warn_unused_configs = true
allow_subclassing_any = false
allow_untyped_calls = false
allow_untyped_defs = false
allow_incomplete_defs = false
check_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
ignore_missing_imports = false
pretty = true
[[tool.mypy.overrides]]
module = [
"deserialize",
"conans.client.conan_api",
"conans.errors"
]
ignore_missing_imports = true
# Mypi currently does not support pyproject.toml.
# See mypy.ini instead.