Skip to content

Commit b1eaa1b

Browse files
authored
Updated README for Opening Repo (#36)
* Updated README for making repo public * New home path
1 parent 59ffc2d commit b1eaa1b

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

Diff for: README.md

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
# Codeflare-SDK
22

3+
An intuitive, easy-to-use python interface for batch resource requesting, access, job submission, and observation. Simplifying the developer's life while enabling access to high-performance compute resources, either in the cloud or on-prem.
4+
5+
Documentation site coming soon, link will be provided here
6+
7+
## Installation
8+
9+
Can be installed via `pip`: `pip install codeflare-sdk`
10+
11+
## Development
12+
13+
For testing, make sure to have installed:
14+
- `pytest`
15+
- The remaining dependencies located in `requirements.txt`
16+
NOTE: Self-contained unit/functional tests coming soon, will live in `tests` folder
17+
318
To build the python package:
419
- If poetry is not installed: `pip3 install poetry`
520
- `poetry build`
6-
7-
To publish:
8-
- `poetry publish`

Diff for: pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ authors = [
1414

1515
readme = 'README.md'
1616

17-
repository = "https://github.com/openshift-psap/codeflare-sdk"
18-
homepage = "https://github.com/openshift-psap/codeflare-sdk"
17+
repository = "https://github.com/project-codeflare/codeflare-sdk"
18+
homepage = "https://github.com/project-codeflare/codeflare-sdk"
1919

2020
keywords = ['codeflare', 'python', 'sdk', 'client', 'batch', 'scale']
2121

Diff for: tests/test_clusters.py

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
import time
1919

20+
# FIXME - These tests currently assume OC logged in, and not self-contained unit/funcitonal tests
21+
2022
def test_cluster_up():
2123
cluster = Cluster(ClusterConfiguration(name='raycluster-autoscaler'))
2224
cluster.up()

0 commit comments

Comments
 (0)