-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 927 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
[tool.poetry]
name = "primal-page"
version = "1.11.3"
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"
requests = "^2.31.0"
biopython = "^1.83"
typer = "^0.12.3"
primalbedtools = "^0.6.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
ruff = "^0.3.4"
coverage = "^7.5.4"
pre-commit = "^3.7.1"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.28"
[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", "B006"] # Ignore line length