-
Notifications
You must be signed in to change notification settings - Fork 130
/
pyproject.toml
52 lines (48 loc) · 1.06 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 = "hydrus"
version = "0.5.0"
description = "Hydra Ecosystem Flagship Server. Deploy REST data for Web 3.0"
authors = ["Hydra Ecosystem"]
license = "MIT License"
[tool.poetry.dependencies]
python = "~=3.8.0"
alembic = "1.0.10"
appdirs = "1.4.3"
blinker = "1.4"
dateutils = "0.6.12"
flake8 = "~3.8.3"
Flask = "2.0.1"
Flask-Cors = "3.0.10"
Flask-RESTful = "0.3.9"
Flask-SocketIO = "4.2.1"
gevent = "20.12.0"
lxml = ">=4.9.1"
gevent-websocket = "0.10.1"
hydra_python_core = ">=0.3.1"
hydra_openapi_parser = ">=0.2"
psycopg2-binary = "2.9.3"
pyld = "~2.0.3"
persisting-theory = "0.2.1"
python-engineio = "3.11.2"
python-socketio = "4.4.0"
pytz = "~2019.3"
PyYAML = "6.0"
SQLAlchemy = "1.3.12"
structlog = ">=21.5.0"
hydra-python-core = "0.3.1"
PyLD = "2.0.3"
Werkzeug = "2.0.3"
[tool.poetry.dev-dependencies]
pytest = ">=7.1.2"
pep8 = "1.7.1"
flake8 = ">=3.8.4"
pre-commit = ">=2.19"
mypy = ">=0.971"
[tool.pytest.ini_options]
minversion = "7.1.2"
testpaths = [
"tests"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"