-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (47 loc) · 1.33 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]
authors = ["Hydrospheredata"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = " This package's purpose is to provide a simple and convenient way of integrating user's workflow scripts with Serving API."
maintainers = ["Bulat Lutfullin <[email protected]>"]
name = "hydrosdk"
readme = "README.md"
version = "3.0.3"
[tool.poetry.urls]
homepage = "https://hydrosphere.io/"
[tool.poetry.dependencies]
hydro-serving-grpc = "3.0.3"
importlib_metadata = "^1.7.0"
numpy = "1.18.3"
python = "^3.6.2"
pyyaml = "^5.4.1"
requests = "2.23.0"
requests_toolbelt = "^0.9.1"
sseclient-py = "^1.7"
dataclasses = {version = "0.7", python = "<3.7"}
pandas = ">=1.1.5"
pydantic = "^1.8.2"
docker-image-py = "^0.1.10"
[tool.poetry.dev-dependencies]
black = "^21.5b1"
flake8 = "^3.9.2"
flake8-black = "^0.2.1"
flake8-bugbear = "^21.4.3"
flake8-import-order = "^0.18.1"
pytest = "^5.4.1"
requests_mock = "^1.7.0"
autoflake = "^1.4"
isort = "^5.8.0"
devtools = "^0.6.1"
Sphinx = "^4.1.2"
recommonmark = "^0.7.1"
sphinx-rtd-theme = "^0.5.2"
pytest-mock = "^3.6.1"
tox = "^3.23.1"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]