Skip to content

Commit 8f9911d

Browse files
author
Johannes Hötter
committed
cli command 'refinery' to 'rsdk'
1 parent 42307f7 commit 8f9911d

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![refinery repository](https://uploads-ssl.webflow.com/61e47fafb12bd56b40022a49/62cf1c3cb8272b1e9c01127e_refinery%20sdk%20banner.png)](https://github.com/code-kern-ai/refinery)
22
[![Python 3.9](https://img.shields.io/badge/python-3.9-blue.svg)](https://www.python.org/downloads/release/python-390/)
3-
[![pypi 1.0.0](https://img.shields.io/badge/pypi-1.0.0-yellow.svg)](https://pypi.org/project/refinery-python-sdk/1.0.0/)
3+
[![pypi 1.0.1](https://img.shields.io/badge/pypi-1.0.1-yellow.svg)](https://pypi.org/project/refinery-python-sdk/1.0.1/)
44

55
This is the official Python SDK for [*refinery*](https://github.com/code-kern-ai/refinery), the **open-source** data-centric IDE for NLP.
66

refinery/cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ def push(file_path):
1717

1818
def help():
1919
msg.info(
20-
"With the refinery SDK, you can type commands as `refinery <command>`. Currently, we provide the following:"
20+
"With the refinery SDK, you can type commands as `rsdk <command>`. Currently, we provide the following:"
2121
)
2222
msg.info(
23-
"- refinery pull: Download the record export of the project defined in `settings.json` to your local storage."
23+
"- rsdk pull: Download the record export of the project defined in `settings.json` to your local storage."
2424
)
2525
msg.info(
26-
"- refinery push <path>: Upload a record file to the project defined in `settings.json` from your local storage."
26+
"- rsdk push <path>: Upload a record file to the project defined in `settings.json` from your local storage."
2727
)
2828

2929

setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@
1010

1111
setup(
1212
name="refinery-python-sdk",
13-
version="1.0.0",
13+
version="1.0.1",
1414
author="jhoetter",
1515
author_email="johannes.hoetter@kern.ai",
1616
description="Official Python SDK for Kern AI refinery.",
1717
long_description=long_description,
1818
long_description_content_type="text/markdown",
1919
url="https://github.com/code-kern-ai/refinery-python",
2020
keywords=[
21-
"Kern AI",
22-
"refinery",
23-
"machine-learning",
24-
"supervised-learning",
25-
"data-centric-ai",
26-
"data-annotation",
27-
"python"
21+
"Kern AI",
22+
"refinery",
23+
"machine-learning",
24+
"supervised-learning",
25+
"data-centric-ai",
26+
"data-annotation",
27+
"python",
2828
],
2929
classifiers=[
3030
"Development Status :: 4 - Beta",
@@ -44,7 +44,7 @@
4444
],
4545
entry_points={
4646
"console_scripts": [
47-
"refinery=refinery.cli:main",
47+
"rsdk=refinery.cli:main",
4848
],
4949
},
5050
)

0 commit comments

Comments
 (0)