-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (38 loc) · 996 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 = "primal-page"
version = "1.5.1"
description = "Tooling and schemas for the primerschemes index"
authors = ["ChrisKent <[email protected]>"]
readme = "README.md"
repository = "https://github.com/ChrisgKent/primal-page"
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.4.2"
typer = {extras = ["all"], version = "^0.9.0"}
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
ruff = "^0.3.4"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
typer-cli = {path = "../typer-cli"} # https://github.com/Patarimi/typer-cli/commit/f44b547a0b9ea71e5c7b2dc7d4c1ab1212394e5e
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
primal-page = "primal_page.main:app"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# isort
"I",
]
ignore = ["E501"] # Ignore line length