-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (46 loc) · 1.12 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
[tool.poetry]
name = "python-starter-codes"
version = "0.1.0"
description = ""
authors = ["Vetrichelvan <pythonhub.py@gmail.com>"]
readme = "README.md"
packages = [{ include = "python_starter_codes" }]
[tool.poetry.dependencies]
python = "^3.9"
notebook = "^6.5.2"
jupyterlab = "^3.6.1"
[tool.poetry.group.development.dependencies]
black = { extras = ["jupyter"], version = "^23.1.0" }
isort = "^5.12.0"
pylint = "^2.16.1"
pre-commit = "^3.0.3"
ruff = "^0.0.245"
mypy = "^0.991"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
known_third_party = ["faag_cli"]
[tool.ruff]
src = ["."]
target-version = "py311"
fix = true
show-source = true
line-length = 120
select = ["E", "F", "N801", "N802", "N803", "N805", "N806"]
[tool.ruff.flake8-quotes]
inline-quotes = "double"
multiline-quotes = "double"
docstring-quotes = "double"
[tool.ruff.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.flake8-type-checking]
strict = true
[tool.ruff.isort]
combine-as-imports = true
known-third-party = ["faag_cli"]
[tool.mypy]
strict = true