-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
53 lines (49 loc) · 1.4 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
[tool.poetry]
name = "ibm-data-engine"
version = "0.4.0"
description = "Feast offline feature store implementation backed by the IBM Cloud Data Engine"
license = "Apache-2.0"
authors = [
"Michal Siedlaczek <michal.siedlaczek@ibm.com>",
"Abhay Ratnaparkhi <abhay.ratnaparkhi1@ibm.com>",
"Jay Hou <jhou@us.ibm.com>",
]
maintainers = [
"Michal Siedlaczek <michal.siedlaczek@ibm.com>",
"Abhay Ratnaparkhi <abhay.ratnaparkhi1@ibm.com>",
]
readme = "README.md"
repository = "https://github.com/IBM/feast-ibm"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = "^3.9,<3.12"
feast = "^0.40.0"
ibmcloudsql = "^0.5.11"
urllib3 = "<2"
[tool.poetry.dev-dependencies]
black = "^22.10"
diff-cover = "^7"
freezegun = "^1"
hypothesis = "^6"
isort = "^5"
pylint = "^2"
pytest = "^8"
pytest-cov = "^4"
testfixtures = "^7.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100