forked from entropy-lab/entropy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
107 lines (95 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[tool.poetry]
name = "entropylab"
version = "0.7.0"
description = ""
license = "BSD-3-Clause"
authors = [
"Guy Kerem <[email protected]>",
"Ilan Mitnikov <[email protected]>",
"Gal Winer <[email protected]>",
"Tal Shani <[email protected]>"
]
packages = [
{ include = "entropylab" }
]
include = [
"CHANGELOG.md",
"LICENSE",
]
exclude = [
"**/tests/**",
"**/conftest.py/**",
]
readme = "README.md"
homepage = "https://github.com/entropy-lab/entropy"
[tool.poetry.scripts]
entropy = 'entropylab.cli.main:main'
n3p = 'entropylab.cli.main:main'
[tool.poetry.dependencies]
python = ">=3.7.1,<3.10"
sqlalchemy = "^1.4.0"
bokeh = "^2.3.0"
param = "^1.10.1"
dill = "^0.3.3"
pandas = "^1.2.3"
numpy = "^1.19"
jsonpickle = "^2.0.0"
graphviz = "^0.16"
networkx = "^2.6.0"
matplotlib = "^3.4.1"
h5py = "^3.3.0"
alembic = "^1.6.5"
dynaconf = "^3.1.4"
dash = "^2.4.1"
dash-bootstrap-components = "^1.0.0"
waitress = "^2.1.2"
tinydb = "^4.5.2"
munch = "^2.5.0"
hupper = "^1.10.3"
qualang-tools = "^0.9.0"
hiredis = "^2.0.0"
redis = "^4.1.0"
Jinja2 = "^3.0.3"
psutil = "^5.9.0"
pyzmq = "^22.3.0"
msgpack = "^1.0.3"
pika = "^1.2.0"
psycopg2-binary = "^2.9.3"
pytz = "^2021.3"
tzlocal = "^4.1"
tenacity = "^8.0.1"
asyncpg = "^0.25"
celery = "^5.2.3"
fastapi = "^0.75.0"
requests = "^2.27.1"
distro = "^1.7.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
black = "^22.3.0"
flake8 = "^3.9.0"
flake8-bugbear = "^22.4.25"
pytest-repeat = "^0.9.1"
pytest-cov = "^3.0.0"
poethepoet = "^0.10.0"
[tool.pytest.ini_options]
[tool.poe.tasks.format]
cmd = "black entropylab"
help = "Format source files according to the style rules"
[tool.poe.tasks.check-format]
cmd = "black entropylab --check"
help = "Check that all files are formatted according to the style rules"
[tool.poe.tasks.lint]
cmd = "flake8 entropylab"
help = "Check for lint errors"
[tool.poe.tasks.test]
cmd = "pytest"
help = "Run all unit tests"
[tool.poe.tasks.check]
sequence = ["check-format", "lint", "test"]
help = "Perform all check possible on the code"
[tool.black]
target-version = ["py37"]
line-length = 88
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"