Metadata-Version: 2.1
Name: lesma
Version: 0.5.4
Summary: Simple paste app, friendly with browser and command line, with files as storage backend.
Home-page: https://lesma.eu
Author: Óscar García Amor
Author-email: ogarcia@connectical.com
License: GPLv3
Project-URL: Bug Reports, https://github.com/ogarcia/lesma/issues
Project-URL: Source, https://github.com/ogarcia/lesma
Keywords: lesma paste pastebin sprunge pastein hastebin friendly commandline
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE

# lesma

(c) 2017-2023 Óscar García Amor

Redistribution, modifications and pull requests are welcomed under the terms
of GPLv3 license.

lesma is a simple paste app, friendly with browser and command line, with
files as storage backend. You can see in action in https://lesma.eu.

## Install

To install lesma follow this steps.

### From source

```sh
git clone https://github.com/ogarcia/lesma.git
virtualenv3 ./lesma-venv
source ./lesma-venv/bin/activate
cd lesma
python setup.py install
```

### From PyPI

```sh
virtualenv3 ./lesma-venv
source ./lesma-venv/bin/activate
pip install lesma
```

## Run

In your virtualenv run `lesma server`.

```sh
source ./lesma-venv/bin/activate
lesma server
```

Or without activate virtualenv.

```
./lesma-venv/bin/lesma server
```

Run `lesma` without parameters to see help.
