-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 1 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
# Copyright 2021-2022 Gradient Institute Ltd. <[email protected]>
[tool.poetry]
name = "deva"
version = "0.1.0"
description = ""
authors = ["Lachlan McCalman <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
click = "^8.0.1"
matplotlib = "^3.4.2"
numpy = "^1.21.1"
scipy = "^1.7.1"
toml = "^0.10.2"
namedtupled = "^0.3.3"
pandas = "^1.3.1"
sklearn = "^0.0"
Flask = "^2.0.1"
requests = "^2.26.0"
redis = "^3.5.3"
gunicorn = "^20.1.0"
fpdf = "^1.7.2"
fastapi = "^0.73.0"
uvicorn = {extras = ["standard"], version = "^0.17.4"}
[tool.poetry.dev-dependencies]
sphinx = "^4.2.0"
pytest = "^5.2"
flake8 = "^3.9.2"
ipython = "^7.26.0"
pylint = "^2.12.2"
pytest-cov = "^3.0.0"
pytest-mock = "^3.6.1"
flake8-bugbear = "^22.1.11"
flake8-builtins = "^1.5.3"
flake8-comprehensions = "^3.8.0"
flake8-docstrings = "^1.6.0"
flake8-quotes = "^3.3.1"
flake8-junit-report = "^2.1.0"
mypy2junit = "^1.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"