Metadata-Version: 2.0
Name: opensubtitles-downloader
Version: 0.1.2
Summary: cli program for subtitles download from OpenSubtitles
Home-page: UNKNOWN
Author: ubalot
Author-email: ubalot1@gmail.com
License: GPLv3
Keywords: OpenSubtitles,subtitles,downloader
Platform: UNKNOWN
Requires-Dist: send2trash

# Installation

### In order to build the package locally run the next commands.

Uninstall local package
```
python3 -m pip uninstall opensubtitles_downloader
```

Build wheel package
```
python3 setup.py sdist bdist_wheel
```

Install the package locally
```
python3 -m pip install --user dist/opensubtitles_downloader-0.1-py3-none-any.whl
```

#### Pip Test repo
Upload to Pip Test
```
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
```

Install from Pip Test
```
python3 -m pip install --user --index-url https://test.pypi.org/simple/ opensubtitles_downloader
```

#### Pip repo (stable)
Upload to Pip
```
twine upload dist/*
```

Install from Pip
```
pip3 install --user opensubtitles_downloader
```

Upgrade
```
pip3 install --user --upgrade opensubtitles_downloader
```

.. This is your project NEWS file which will contain the release notes.
.. Example: http://www.python.org/download/releases/2.6/NEWS.txt
.. The content of this file, along with README.rst, will appear in your
.. project's PyPI page.

News
====

0.2a1
-----

*Release date: UNRELEASED*

* Example news entry for the in-development version


0.1
---

*Release date: 15-Mar-2010*

* Example news entry for a released version



