-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (43 loc) · 1.11 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
[tool.poetry]
name = "plasticome-metadata"
version = "0.1.0"
description = "Server to store metadata to plasticome"
authors = ["Blueevee <[email protected]>"]
readme = "README.md"
packages = [{include = "plasticome_metadata"}]
[tool.poetry.dependencies]
python = "^3.9"
biopython = "^1.81"
flask = "^2.3.2"
flask-pydantic-spec = "^0.4.5"
taskipy = "^1.11.0"
peewee = "^3.16.2"
psycopg2 = "^2.9.7"
marshmallow = "^3.20.1"
python-dotenv = "^1.0.0"
flask-jwt-extended = "^4.5.3"
bcrypt = "^4.0.1"
[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"