Metadata-Version: 2.1
Name: fspin
Version: 0.1.2.6
Summary: ROS like rate control through python decorator
Author: Yusuke Tanaka
License: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Robot Framework
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7, <4.0
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# **template-pip-repo**
Pip installable lib

## Latest Version 
### [![Version](https://img.shields.io/badge/version-0.0.0-blue.svg)](https://github.com/Suke0811/fspin/releases)

---
## **Installation**
Choose one of the following methods to install the package:

### **1. Install from PyPI**
To install the latest stable release from [PyPI](https://pypi.org/):
```bash
pip install template-pip-repo
````

### **2. Install from GitHub**
```bash
pip install git+https://github.com/Suke0811/fspin.git
```
#### a) Install from a Specific Branch
To install from a specific branch:
```bash
pip install git+https://github.com/Suke0811/fspin.git@<branch-name>
```

#### b) Install from a Specific Commit
To install from a specific commit:
```bash
pip install git+https://github.com/Suke0811/fspin.git@<commit-hash>
```

#### Install from a Specific Tag
To install from a specific tag:
```bash
pip install git+https://github.com/Suke0811/fspin.git@<tag>
```

### **3. Install from Local or Submodule Repository**
If you have cloned the repository locally:
#### a) Install from the current directory:

```bash
pip install .
```
#### b) Install from a specific local path:
```bash
pip install /path/to/setup_py_folder/
```

### **4. Install in Developer Mode**
#### a) Install from the current directory:
```bash
pip install -e .
```
#### b) Install from a specific local path:
```bash
pip install -e /path/to/setup_py_folder/
```

