-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (46 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
56 lines (46 loc) · 1.12 KB
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
[tool.poetry]
name = "plasticome"
version = "0.1.0"
description = ""
authors = ["Blueevee <lm.elyn@hotmail.com>"]
readme = "README.md"
packages = [{include = "plasticome"}]
[tool.poetry.dependencies]
python = "^3.10,<3.13"
biopython = "^1.81"
taskipy = "^1.12.0"
flask-pydantic-spec = "^0.4.5"
python-dotenv = "^1.0.0"
flask = "^2.3.3"
docker = "^6.1.3"
redis = "^5.0.1"
celery = "^5.3.4"
secure-smtplib = "^0.1.1"
flask-cors = "^4.0.2"
pandas = "^2.1.1"
matplotlib = "^3.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
blue = "^0.9.1"
isort = "^5.12.0"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.1.18"
mkdocstrings = "^0.22.0"
mkdocstrings-python = "^1.1.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "."
addopts = "--doctest-modules"
[tool.isort]
profile = "black"
line_length = 79
[tool.taskipy.tasks]
lint = "blue --check --diff . && isort --check --diff ."
docs = "mkdocs serve"
pre_test = "task lint"
test = "pytest -s -x --cov=plasticome -vv"
post_test = "coverage html"
run = "./run_flask.sh"