-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (51 loc) · 1.17 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
58
59
60
[tool.poetry]
name = "anti-fungi-peptide"
version = "0.1.0"
description = ""
authors = ["Ekaterina Kukhtenko <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
helixvis = "^1.0.1"
scipy = "^1.10.1"
pandas = "^2.0.2"
biopython = "^1.81"
matplotlib = "^3.7.1"
numpy = "^1.24.3"
seaborn = "^0.12.2"
sklearn = "^0.0.post5"
statsmodels = "^0.14.0"
rich = "^13.3.5"
openpyxl = "^3.1.2"
scikit-learn = "^1.2.2"
[tool.poetry.dev-dependencies]
mypy = "*"
taskipy = "*"
safety = "*"
pylint = "*"
black = "*"
isort = "*"
[tool.taskipy.tasks]
check = """
isort *.py\
&& black *.py\
&& poetry export -f requirements.txt | poetry run safety check --bare --stdin\
&& mypy --ignore-missing-imports *.py\
&& pylint *.py
"""
[tool.black]
line-length = 120
target_version = ['py310']
[tool.isort]
line_length = 120
profile = "black"
[tool.pylint.format]
max-line-length = 120
#disable = ["C0114", "C0115", "C0116"] # disabling doc stings because code self-documented
[tool.mypy]
#disallow_any_generics = true
#disallow_untyped_defs = true
warn_redundant_casts = true
strict_equality = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"