Metadata-Version: 2.1
Name: deleter
Version: 0.0.2
Summary: Delete Python scripts at exit
Home-page: https://github.com/desty2k/deleter
Author: Wojciech Wentland
Author-email: wojciech.wentland@int.pl
License: MIT
Keywords: delete,atexit
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# deleter

[![Build](https://github.com/desty2k/deleter/actions/workflows/build.yml/badge.svg)](https://github.com/desty2k/deleter/actions/workflows/build.yml)
[![Version](https://img.shields.io/pypi/v/deleter)](https://pypi.org/project/deleter/)
[![Version](https://img.shields.io/pypi/dm/deleter)](https://pypi.org/project/deleter/)

Automatically remove python scripts from disk after execution.

## Installation

From PyPI

```shell
pip install deleter -U
```

From sources

```shell
git clone https://github.com/desty2k/deleter.git
cd deleter
pip install .
```

## Usage

```python
import deleter

deleter.register()

# your code
```


