-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.02 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
[tool.poetry]
name = "katas"
version = "0.1.0"
description = ""
authors = ["Pedro Lopez Mareque <pedro.lopez.mareque@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
pyupgrade = "^3.2.0"
django = "^4.2.3"
[tool.poetry.dev-dependencies]
yapf = "^0.32.0"
toml = "^0.10.2"
mypy = "^0.971"
flake8 = "^5.0.4"
Flake8-pyproject = "^1.1.0"
doublex = { git = "https://github.com/davidvilla/python-doublex", rev = "0ccbe65c8574169d8b723c1ef29bcbe3f2e98c20" }
doublex-expects = "^0.7.1"
expects = "^0.9.0"
pylint = "^2.15.2"
pytest = "^7.1.3"
pytest-approvaltests = "^0.2.4"
pytest-xdist = "^2.5.0"
pytest-watch = "^4.2.0"
pytest-testmon = "^1.3"
pytest-bdd = "^6.0.1"
approvaltests = "^5.6.1"
mamba = "^0.11.2"
[tool.flake8]
ignore= ["E501", "E124","E203", "W291", "W503", "W504", "E302", "E303"]
[tool.yapf]
based_on_style = "google"
[tool.pyright]
venvPath="/home/pmareke/.cache/pypoetry/virtualenvs"
venv="aoc-7x1CD7iW-py3.10"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"