From 61d4a1fdfb6cd0a92895b63952c730f8cc349800 Mon Sep 17 00:00:00 2001 From: Gheorghita Hurmuz Date: Tue, 8 Apr 2025 14:47:04 +0300 Subject: [PATCH 1/2] chore: update README with badges --- README.md | 14 ++++++++++++-- pyproject.toml | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f3780f5d..e0c7a2b9 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # UiPath Python SDK +[![PyPI downloads](https://img.shields.io/pypi/dm/uipath.svg)](https://pypi.org/project/uipath/) +[![PyPI - Version](https://img.shields.io/pypi/v/uipath)](https://img.shields.io/pypi/v/uipath) +[![Python versions](https://img.shields.io/pypi/pyversions/uipath.svg)](https://pypi.org/project/uipath/) + + A Python SDK that enables programmatic interaction with UiPath Platform services including processes, assets, buckets, context grounding, data services, jobs, and more. The package also features a CLI for creation, packaging, and deployment of automations to UiPath Platform. ## Table of Contents @@ -25,13 +30,13 @@ A Python SDK that enables programmatic interaction with UiPath Platform services ## Installation ```bash -pip install uipath-sdk +pip install uipath ``` using `uv`: ```bash -uv add uipath-sdk +uv add uipath ``` ## Configuration @@ -158,3 +163,8 @@ To properly use the CLI for packaging and publishing, your project should includ - A `uipath.json` file (generated by `uipath init`) - Any Python files needed for your automation + ## Development + + ### Setting Up a Development Environment + + Please read our [contribution guidelines](CONTRIBUTING.md) before submitting a pull request. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index ef945f1a..f18873e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath" -version = "2.0.0.dev1" +version = "2.0.0.dev2" description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools." readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.9" From d0038c8c1ed1255d85edfa53b35e5652876f9917 Mon Sep 17 00:00:00 2001 From: Gheorghita Hurmuz Date: Tue, 8 Apr 2025 14:53:50 +0300 Subject: [PATCH 2/2] chore: run ci for all --- .github/workflows/ci.yml | 6 ------ .github/workflows/rest_ci.yml | 27 --------------------------- 2 files changed, 33 deletions(-) delete mode 100644 .github/workflows/rest_ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9bc18eb0..0c0695a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,15 +5,9 @@ on: push: branches: - main - paths: - - "pyproject.toml" - - "src/**" pull_request: branches: - main - paths: - - "pyproject.toml" - - "src/**" jobs: lint: diff --git a/.github/workflows/rest_ci.yml b/.github/workflows/rest_ci.yml deleted file mode 100644 index 8076a215..00000000 --- a/.github/workflows/rest_ci.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Dumb CI - -on: - workflow_dispatch: {} - push: - branches: - - main - paths-ignore: - - "src/**" - - "pyproject.toml" - pull_request: - branches: - - main - paths-ignore: - - "src/**" - - "pyproject.toml" - -jobs: - lint: - uses: ./.github/workflows/lint.yml - with: - should_skip: true - - test: - uses: ./.github/workflows/test.yml - with: - should_skip: true \ No newline at end of file