-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (37 loc) · 922 Bytes
/
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
[tool.poetry]
name = "rss-feed-editor"
version = "0.1.0"
description = ""
authors = ["Glossawy <[email protected]>"]
readme = "README.md"
packages = [{ include = 'feed_editor', from = 'app' }]
[tool.poetry.dependencies]
python = "^3.12"
Flask = "^2.3.3"
flask-cors = "^4.0.0"
lxml = "^4.9.3"
httpx = "^0.25.0"
validators = "^0.22.0"
pydantic = "^2.3.0"
[tool.poetry.group.dev.dependencies]
pylint = "^3.1.0"
lxml-stubs = "^0.5.1"
flake8 = "^7.0.0"
pytest = "^8.1.1"
isort = "^5.13.2"
types-flask-cors = "^4.0.0.20240106"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["app/tests"]
norecursedirs = ["app/tests/support"]
pythonpath = ["app/tests/support"]
[tool.mypy]
check_untyped_defs = true
[tool.isort]
known_firstparty = ["feed_editor"]
multi_line_output = 3
include_trailing_comma = true
use_parentheses = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"