-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 1.91 KB
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
72
73
74
[project]
name = "rialto"
version = "2.2.0"
description = "Rialto is a framework for building and deploying machine learning features in a scalable and reusable way. It provides a set of tools that make it easy to define and deploy features and models, and it provides a way to orchestrate the execution of these features and models."
authors = [
{ name = "Marek Dobransky", email = "marekdobr@gmail.com" },
{ name = "Vladislav Vancak", email = "vladislav.vancak@gmail.com" },
]
requires-python = ">=3.11, <4.0"
readme = "README.md"
keywords = [
"feature",
"featureslib",
"featuremaker",
"metadata",
"featureloader",
"loader",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"pydantic>=2.12.3,<3",
"pathlib>=1.0.1,<2",
"pyyaml>=6.0.3,<7",
"delta-spark>=4.0.0,<5",
"python-dateutil>=2.9.0.post0,<3",
"pytest-mock>=3.15.1,<4",
"pandas>=2.3.3,<3",
"flake8-broken-line>=1.0.0,<2",
"loguru>=0.7.3,<0.8",
"importlib-metadata>=8.7.0,<9",
"numpy>=2.3.4,<3",
]
[project.urls]
Repository = "https://github.com/AbsaOSS/rialto"
Documentation = "https://absaoss.github.io/rialto/"
[dependency-groups]
dev = [
"pyspark>=4.0.0,<5",
"chispa>=0.11.1,<0.12",
"pytest>=8.4.2,<9",
"black>=25.9.0,<26",
"isort>=7.0.0,<8",
"pytest-cov>=7.0.0,<8",
"flake8>=7.3.0,<8",
"flake8-docstrings>=1.7.0,<2",
"pep8-naming>=0.15.1,<0.16",
"pre-commit>=4.3.0,<5",
"sphinx>=8.2.3,<9",
"sphinx-rtd-theme>=3.0.2,<4",
"sphinx-mdinclude>=0.6.2,<0.7",
]
[tool.hatch.build.targets.sdist]
include = ["rialto"]
[tool.hatch.build.targets.wheel]
include = ["rialto"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 120
target-version = ["py312"]
[tool.isort]
profile = "black"