-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 870 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
[tool.poetry]
name = "pypi-browser-webapp"
version = "0.0.12"
description = "PyPI package browsing web application"
authors = ["Chris Kuehl <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "pypi_browser"}]
[tool.poetry.dependencies]
python = "^3.10"
starlette = "*"
fluffy-code = "*"
Jinja2 = "*"
httpx = "*"
aiofiles = "*"
identify = "*"
Pygments = "*"
MarkupSafe = "*"
packaging = "*"
[tool.poetry.group.dev.dependencies]
uvicorn = "*"
pre-commit = "*"
pytest = "*"
mypy = "*"
coverage = "*"
types-aiofiles = "*"
types-Pygments = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true