forked from madgik/exaflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.71 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "mip-engine"
version = "0.1.0"
description = "Core engine for the Medical Informatics Platform"
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = "~3.8"
hypercorn = "^0.13.2"
Quart = "^0.17.0"
celery = "^5.2"
asgiref = "^3.5.0"
pymonetdb = "<1.5"
astor = "^0.8.1"
numpy = "^1.20.2"
scipy = "^1.6.2"
pandas = "^1.2.3"
scikit-learn = "^1.0.2"
dnspython = "^2.2.1"
pydantic = "^1.9.0"
envtoml = "^0.1.2"
requests = "^2.27.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.3"
pytest-xdist = "^2.2.1"
pytest-asyncio="^0.18.1"
fasteners = "^0.16.3"
pytest-assume="2.4.3"
ipython = "^7.22.0"
pdbpp = "^0.10.2"
invoke = "^1.5.0"
black = "22.3.0"
isort = "5.10.1"
pre-commit = "^2.11.1"
termcolor = "^1.1.0"
coverage = {extras = ["toml"], version = "^5.5"}
pytest-cov = "^2.12.0"
pylint = "^2.8.2"
rope = "^0.19.0"
devtools="^0.7.0"
docker = "^5.0.3"
tqdm = "^4.62.3"
SQLAlchemy = "~1.3.0"
statsmodels = "^0.13.2"
mipdb = "0.4.0"
psutil = "^5.9.0"
[tool.pytest.ini_options]
markers = [
"database: these tests depend on an external dockerized MonetDB service running (deselect with '-m \"not database\"')",
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"smpc: marks the tests that need smpc deployment (deselect with '-m \"not smpc\"')",
]
filterwarnings = ["ignore::DeprecationWarning"]
norecursedirs = ["tests/testcase_generators"]
[tool.coverage.run]
source_pkgs = ['mipengine']
dynamic_context = 'test_function'
[tool.coverage.report]
exclude_lines = ['def __repr__', 'raise NotImplementedError', 'pragma: no cover']
show_missing = true
[tool.coverage.html]
show_contexts = true
[build-system]
requires = ["poetry-core=1.0.3"]
build-backend = "poetry.core.masonry.api"