-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6170f7e
commit c2defe9
Showing
4 changed files
with
28 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
/rialto/ @MDobransky | ||
/rialto/ @MDobransky /@vvancak |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,4 @@ jobs: | |
- name: Build and publish the wheel to jfrog | ||
run: | | ||
poetry build | ||
# poetry publish | ||
twine upload dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,28 @@ | ||
[tool.poetry] | ||
name = "rialto" | ||
|
||
version = "1.3.0" | ||
version = "1.3.1" | ||
|
||
packages = [ | ||
{ include = "rialto" }, | ||
] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
] | ||
|
||
description = "Rialto" | ||
authors = ["Marek Dobransky <[email protected]>"] | ||
[project] | ||
name = "rialto" | ||
readme = "README.md" | ||
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 = ["Marek Dobransky <[email protected]>", "Vladislav Vancak <[email protected]>"] | ||
keywords = ["feature", "featureslib", "featuremaker", "metadata", "featureloader", "loader"] | ||
|
||
[project.urls] | ||
Documentation = "https://absaoss.github.io/rialto/" | ||
Repository = "https://github.com/AbsaOSS/rialto" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.10,<4.0" | ||
pydantic = "^2.2.1" | ||
|