-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (48 loc) · 972 Bytes
/
pyproject.toml
File metadata and controls
58 lines (48 loc) · 972 Bytes
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
[tool.poetry]
name = "pylibscheme"
version = "0.1.0"
description = "Lib for create import/class diagrams from your library"
authors = ["EnglishBeach <https://github.com/EnglishBeach>"]
readme = "README.md"
# Dependencies
[tool.poetry.dependencies]
python = "^3.10"
pylint = "^4.0.3"
pydeps = "^3.0.1"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
isort = "^5.13.2"
flake8 = "^7.0.0"
# Linters and formatters settings
[tool.isort]
profile = "black"
line_length = 100
src_paths = ["pylibscheme"]
skip_gitignore = true
filter_files = true
[tool.black]
line-length = 100
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
'''
[tool.pyright]
include = ["pylibscheme", "tests"]
exclude = ["**/*.ipynb"]
reportDeprecated = "warning"
typeCheckingMode = 'standard'
[tool.flake8]
max-line-length = 100
inline-quotes = "\""
multiline-quotes = "\""
ignore = ["E203", "W503", "E741"]
[tool.poetry2conda]
name = "pylibscheme_env"