Skip to content

Commit

Permalink
PyPI metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
MDobransky committed Jul 15, 2024
1 parent 6170f7e commit c2defe9
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/rialto/ @MDobransky
/rialto/ @MDobransky /@vvancak
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
- name: Build and publish the wheel to jfrog
run: |
poetry build
# poetry publish
twine upload dist/*
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Sphinx-Generated autodocs pages available **[here](https://absaoss.github.io/ria
3. [Contributing](#contributing)

# <a id="install"></a> 1. Installation
The packages is not yet available in public pip
```bash
pip install rialto
```
Expand Down Expand Up @@ -151,7 +150,12 @@ Sequential feature generation can be simply interpreted as appending a new colum
from rialto.maker import FeatureMaker
from my_features import simple_features

features, metadata = FeatureMaker.make(df=input_data, key="KEY", make_date=run_date, features_module=simple_features, keep_preexisting=True)
features, metadata = FeatureMaker.make(
df=input_data,
key="KEY",
make_date=run_date,
features_module=simple_features,
keep_preexisting=True)
```

#### Aggregated
Expand All @@ -161,7 +165,11 @@ In aggregated generation, the source dataframe is grouped by the key or keys and
from rialto.maker import FeatureMaker
from my_features import agg_features

features, metadata = FeatureMaker.make_aggregated(df=input_data, key="KEY", make_date=run_date, features_module=agg_features)
features, metadata = FeatureMaker.make_aggregated(
df=input_data,
key="KEY",
make_date=run_date,
features_module=agg_features)
```

There are also **make_single_feature** and **make_single_agg_feature** available, intended to be used in tests. (See full documentation)
Expand Down
18 changes: 15 additions & 3 deletions pyproject.toml
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"
Expand Down

0 comments on commit c2defe9

Please sign in to comment.