forked from exasol/sagemaker-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (32 loc) · 1.05 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
[tool.poetry]
name = "exasol-sagemaker-extension"
version = "0.1.0"
description = "Exasol SageMaker Integration"
license = "MIT"
authors = [
"Umit Buyuksahin <umit.buyuksahin@exasol.com>",
"Torsten Kilias <torsten.kilias@exasol.com>"
]
readme = 'README.md'
repository = "https://github.com/exasol/sagemaker-extension"
homepage = "https://github.com/exasol/sagemaker-extension"
keywords = ['exasol', 'sagemaker']
include = ["lua", "resources", "deployment"]
[tool.poetry.dependencies]
python = ">=3.6.1,<4.0"
pandas = ">=1.1.3,<2.0.0"
boto = "^2.49.0"
sagemaker = "^2.59.1"
pyexasol = "^0.20.0"
localstack-client = "^1.25"
importlib-resources = "^5.2.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^2.12.1"
Sphinx = "^4.1.2"
coverage = "^5.5"
exasol-udf-mock-python = { git = "https://github.com/exasol/udf-mock-python.git", branch = "master" }
exasol-bucketfs-utils-python = { git = "https://github.com/exasol/bucketfs-utils-python.git", branch = "main" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"