-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (49 loc) · 1.06 KB
/
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
50
51
52
53
54
55
56
57
[tool.poetry]
name = "primalscheme3"
version = "3.0.2"
description = "Generation of highly multiplexed primer schemes"
authors = ["ChrisKent <chrisgkent@gmail.com>"]
readme = "README.md"
license = "GPL-3.0-only"
repository = "https://github.com/ChrisgKent/primalscheme3"
[tool.poetry.dependencies]
python = "^3.11"
primer3-py = "^1.2.2"
biopython = "^1.80"
numpy = "^1.24.2"
primaldimer_py = "^1.0.4"
networkx = "^3.1"
kaleido = "0.2.1"
plotly = "^5.16.1"
tqdm = "^4.66.1"
typer = "^0.12.3"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest-cov = "^4.1.0"
ruff = "^0.3.4"
pytest = "^7.4.2"
pre-commit = "^4.0.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.27"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
primalscheme3 = 'primalscheme3.cli:app'
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# isort
"I",
]
ignore = ["E501"]