Metadata-Version: 2.1
Name: stl_compressor
Version: 2.0
Summary: STL Compressor
Home-page: https://github.com/fan-ziqi/stl_compressor
Author: Ziqi Fan
Author-email: fanziqi614@gmail.com
License: Apache License 2.0
Platform: all
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENCE

# STL Compressor

STL Compressor is a tool designed to compress STL files efficiently. Users can conveniently compress multiple STL files in batches, reducing their file sizes without compromising on quality.

## Usage

* Windows users can download [here](https://github.com/fan-ziqi/stl_compressor/releases)

* Python

  ```bash
  pip install --upgrade stl_compressor -i https://www.pypi.org/simple/
  stl_compresser
  ```

## Packaging

To package the application as a standalone executable, use PyInstaller:

```bash
pyinstaller --onefile --windowed stl_compresser_ui.py
```

## Upload to Pypi

```bash
python setup.py check
python setup.py sdist bdist_wheel
twine upload dist/*
```
