-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (55 loc) · 1.41 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
[tool.poetry]
name = "gordo-dataset"
version = "2.3.8"
description = "Gordo datasets and data providers"
authors = ["Equinor ASA <[email protected]>"]
license = "AGPLv3"
readme = "README.md"
homepage = "https://github.com/equinor/gordo-dataset"
repository = "https://github.com/equinor/gordo-dataset"
keywords = ["gordo"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
]
include = [
"LICENSE",
"gordo_dataset/data_provider/resources/assets_config.yaml",
]
packages = [
{ include = "gordo_dataset" }
]
[tool.poetry.dependencies]
python = "^3.7"
azure-datalake-store = "^0.0.51"
pandas = "^1.0.3"
influxdb = "^5.3.0"
cachetools = "^4.1.0"
typing_extensions = "^3.7.4"
pyarrow = "^0.17.1"
numpy = "1.19.5"
azure-storage-file-datalake = "^12.1.2"
azure-identity = "^1.4.0"
marshmallow = "^3.3.0"
PyYAML = "^5.3.1"
scikit-learn = "^0.23.2"
numexpr = "^2.7.1"
xarray = "^0.16.2"
cryptography = "^3.4.0"
[tool.poetry.dev-dependencies]
pytest = "^6.1"
black = {version = "^20.8b1", allow-prereleases = true}
pytest-cov = "^2.8.1"
docker = "^4.2.0"
mock = "^4.0.2"
pytest-mock = "^3.1.0"
pytest-flakes = "^4.0.0"
pytest-xdist = "^2.1.0"
pytest-mypy = "^0.7.0"
safety = "^1.9.0"
py = "1.10.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"