Skip to content

Commit e4c22ef

Browse files
committed
temp commit to add readthedocs file
1 parent 91a6855 commit e4c22ef

File tree

8 files changed

+1202
-0
lines changed

8 files changed

+1202
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Clustrix
22

33
[![Tests](https://github.com/ContextLab/clustrix/actions/workflows/tests.yml/badge.svg)](https://github.com/ContextLab/clustrix/actions/workflows/tests.yml)
4+
[![Coverage](https://raw.githubusercontent.com/ContextLab/clustrix/master/coverage.svg)](https://github.com/ContextLab/clustrix/actions/workflows/coverage-badge.yml)
45
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
56
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
67

clustrix.egg-info/PKG-INFO

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ Requires-Dist: pytest-cov>=2.0; extra == "dev"
3434
Requires-Dist: black>=21.0; extra == "dev"
3535
Requires-Dist: flake8>=3.8; extra == "dev"
3636
Requires-Dist: mypy>=0.812; extra == "dev"
37+
Provides-Extra: test
38+
Requires-Dist: pytest>=6.0; extra == "test"
39+
Requires-Dist: pytest-cov>=2.0; extra == "test"
40+
Requires-Dist: coverage>=6.0; extra == "test"
41+
Requires-Dist: pytest-xdist>=2.0; extra == "test"
42+
Requires-Dist: pytest-mock>=3.0; extra == "test"
3743
Provides-Extra: docs
3844
Requires-Dist: sphinx>=4.0; extra == "docs"
3945
Requires-Dist: groundwork-sphinx-theme>=1.1.1; extra == "docs"
@@ -57,6 +63,11 @@ Requires-Dist: ipython>=7.0; extra == "all"
5763

5864
# Clustrix
5965

66+
[![Tests](https://github.com/ContextLab/clustrix/actions/workflows/tests.yml/badge.svg)](https://github.com/ContextLab/clustrix/actions/workflows/tests.yml)
67+
[![Coverage](https://raw.githubusercontent.com/ContextLab/clustrix/master/coverage.svg)](https://github.com/ContextLab/clustrix/actions/workflows/coverage-badge.yml)
68+
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
69+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
70+
6071
Clustrix is a Python package that enables seamless distributed computing on clusters. With a simple decorator, you can execute any Python function remotely on cluster resources while automatically handling dependency management, environment setup, and result collection.
6172

6273
## Features

clustrix.egg-info/SOURCES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ tests/test_config.py
2323
tests/test_decorator.py
2424
tests/test_executor.py
2525
tests/test_integration.py
26+
tests/test_local_executor.py
2627
tests/test_utils.py

clustrix.egg-info/requires.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,10 @@ ipython>=7.0
3535

3636
[kubernetes]
3737
kubernetes>=20.13.0
38+
39+
[test]
40+
pytest>=6.0
41+
pytest-cov>=2.0
42+
coverage>=6.0
43+
pytest-xdist>=2.0
44+
pytest-mock>=3.0

docs/.readthedocs.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
3+
# Read the Docs configuration file
4+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
5+
6+
# Required
7+
version: 2
8+
9+
# Set the OS, Python version, and other tools you might need
10+
build:
11+
os: ubuntu-24.04
12+
tools:
13+
python: "3.12"
14+
15+
# Build documentation in the "docs/" directory with Sphinx
16+
sphinx:
17+
configuration: docs/conf.py
18+
19+
# Optionally, but recommended,
20+
# declare the Python requirements required to build your documentation
21+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
22+
# python:
23+
# install:
24+
# - requirements: docs/requirements.txt

docs/source/index.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ Table of Contents
8484
:maxdepth: 2
8585
:caption: Tutorials
8686

87+
tutorials/slurm_tutorial
88+
tutorials/pbs_tutorial
89+
tutorials/kubernetes_tutorial
8790
tutorials/basic_usage
8891
tutorials/machine_learning
8992
tutorials/scientific_computing

0 commit comments

Comments
 (0)