-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
71 lines (66 loc) · 1.72 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
[tool.poetry]
authors = ["Equinor ASA <fg_gpl@equinor.com>"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
description = "Gordo core library"
homepage = "https://github.com/equinor/gordo-core"
include = [
"LICENSE",
"gordo_core/_version.py",
]
keywords = ["gordo-core"]
license = "AGPLv3"
name = "gordo-core"
packages = [
{include = "gordo_core"},
]
readme = "README.md"
repository = "https://github.com/equinor/gordo-core"
version = "0.3.6"
[tool.poetry.urls]
"Source" = "https://github.com/equinor/gordo-core"
"Documentation" = "https://gordo-core.readthedocs.io/"
[tool.poetry.dependencies]
cachetools = "^5.3.0"
influxdb = "^5.3.0"
numexpr = "^2.7.1"
numpy = ">=1.18.0,<2.0.0,!=1.20"
pandas = "^1.1.0"
pyarrow = "^14.0.1"
python = "^3.9"
scikit-learn = "^1.2.2"
xarray = ">=0.16.2,<2024.0.0"
scipy = { version = "*", python = "<3.12" }
[tool.poetry.dev-dependencies]
black = "^24.3.0"
docker = "^7.1.0"
mock = "^5.0.1"
pytest = "^7.3.0"
pytest-cov = "^4.0.0"
pytest-flakes = "4.0.5"
pytest-mock = "^3.1.0"
pytest-mypy = "0.10.3"
pytest-xdist = "^3.2.1"
types-cachetools = "*"
types-mock = "*"
types-python-dateutil = "*"
types-pytz = "*"
types-requests = "*"
types-setuptools = "*"
[tool.poetry.group.docs.dependencies]
sphinx = "^6.2.1"
sphinx-autobuild = "^2021.3.14"
sphinx-copybutton = "^0.5.2"
furo = "^2023.3.27"
ipython = "^8.13.2"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]