Skip to content

Commit 5ae3cd0

Browse files
raghukiran1224GitHub Enterprise
authored andcommitted
Merge pull request #66 from codeflare/packaging
Packaging
2 parents d326fdb + 7c77c2b commit 5ae3cd0

File tree

16 files changed

+853
-240
lines changed

16 files changed

+853
-240
lines changed

.flake8

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#
2+
# Copyright IBM Corporation 2021
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
17+
[flake8]

.style.yapf

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#
2+
# Copyright IBM Corporation 2021
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
17+
[style]
18+
based_on_style=pep8

.travis.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#
2+
# Copyright IBM Corporation 2021
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
17+
language: python
18+
python:
19+
- "3.8"
20+
21+
install:
22+
- pip install -r requirements.txt
23+
- pip install ray[default]
24+
- pip install .
25+
26+
cache:
27+
directories:
28+
- ./resources/data
29+
30+
script:
31+
- pytest

AUTHORS

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#
2+
# Copyright IBM Corporation 2021
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
17+
Rayvens has been contributed to by the following:
18+
19+
Institutions
20+
------------
21+
22+
(*) IBM TJ Watson Research Center, Yorktown Heights, NY
23+
24+
Individuals (chronological)
25+
-----------
26+
27+
Raghu Ganti
28+
Mudhakar Srivatsa
29+
Carlos Costa
30+
Yuan-chi Chang
31+
Kun-Lung Wu

CONTRIBUTING.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!--
2+
# Copyright IBM Corporation 2020,2021
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
-->
16+
17+
# Contributing
18+
19+
Welcome to CodeFlare Pipeline! This page contains information about reporting issues.
20+
21+
## Getting Started
22+
23+
It's encouraged that you look under the Issues tab for contribution opportunites. For those new to the project, we suggest looking under:
24+
25+
- Issues tagged as [Good First Use](https://github.ibm.com/codeflare/ray-pipeline/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22good+first+issue%22)
26+
- Issues tagged as [Help Wanted](https://github.ibm.com/codeflare/ray-pipeline/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22help+wanted%22)
27+
- Issues tagged as [Good First Project](https://github.ibm.com/codeflare/ray-pipeline//issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+project%22)
28+
29+
This project uses ZenHub for tracking of issues and roadmap.
30+
31+
## Reporting an Issue
32+
33+
To report an issue, or to suggest an idea for a change, open an [issue](../../issues/new). It is best to check our existing [issues](../../issues) first to see if a similar one has already been opened and discussed.

Dockerfile

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#
2+
# Copyright IBM Corporation 2021
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
17+
ARG base_image=rayproject/ray:1.4.0-py38
18+
FROM ${base_image}
19+
20+
COPY --chown=ray:users setup.py ray-pipeline/
21+
COPY --chown=ray:users ray-pipeline ray-pipeline/codeflare/
22+
23+
RUN pip install jupyterlab
24+
RUN pip install -e ./ray-pipeline

0 commit comments

Comments
 (0)