-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1006 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
46
47
48
49
[tool.poetry]
name = "sprintf"
version = "0.0.2"
description = "SPA for sprintf python things"
authors = [
"James Hodgkinson <[email protected]>",
]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.115.0"
pydantic = "^2.0.3"
python-multipart = "^0.0.20"
uvicorn = "^0.34.0"
click = "^8.1.3"
[tool.poetry.dev-dependencies]
pylint = "^3.0.1"
mypy = "^1.0"
pytest = "^8.0.0"
black = "^24.1"
pylint-pydantic = "^0.3.0"
requests = "^2.28.1"
requests-html = "^0.10.0"
pytest-asyncio = "^0.25.0"
types-requests = "^2.28.11"
httpx = "^0.28.0"
[build-system]
requires = [
"poetry-core>=1.0.0",
]
build-backend = "poetry.core.masonry.api"
[project]
name = "sprintf"
description = "SPA for sprintf python things"
license = "MIT"
version = "0.0.1"
authors = [
{ name = "James Hodgkinson", email = "[email protected]" },
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.pylint.DEFAULT]
extension-pkg-whitelist="pydantic"
load-plugins="pylint_pydantic"