Metadata-Version: 2.4
Name: remote_script_tool
Version: 1.0.0
Summary: Tools for remote script service
Project-URL: Homepage, https://github.com/pypa/sampleproject
Project-URL: Issues, https://github.com/pypa/sampleproject/issues
Author-email: Flip0 <nca.flip0@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Remote script service tools package for python

## Usage

```python

```

## Development
[Python packaging docs](https://packaging.python.org/en/latest/tutorials/packaging-projects/#a-simple-project)

### Build

Windows
```bash
py -m pip install --upgrade build
py -m build
```
Linux
```bash
python3 -m pip install --upgrade build
python3 -m build
```

### Publish

Windows
```bash
py -m pip install --upgrade twine
py -m twine upload --repository testpypi dist/*
```
Linux
```bash
python3 -m pip install --upgrade twine
python3 -m twine upload --repository testpypi dist/*
```

