Metadata-Version: 2.1
Name: indiminishablez
Version: 1.1
Summary: indiminishablez
Home-page: https://github.com/ochaaz/indiminishablez
Download-URL: https://github.com/ochaaz/indiminishablez/archive/v_01.tar.gz
Author: ochaaz
Author-email: ocha@masrizky.com
License: MIT
Project-URL: Documentation, https://github.com/ochaaz/indiminishablez
Project-URL: Funding, https://donate.pypi.org
Project-URL: Say Thanks!, http://saythanks.io/to/example
Project-URL: Source, https://github.com/ochaaz/indiminishablez/
Project-URL: Tracker, https://github.com/ochaaz/indiminishablez/issues
Keywords: SOME,MEANINGFULL,KEYWORDS
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: validators
Requires-Dist: beautifulsoup4
Requires-Dist: discordautochat
Requires-Dist: discorudo

# Python library quick start
This is a minimal template for uploading your python packages to pypi.org.

## To Use
* First clone this project.
```bash
# Clone this repository
git clone https://github.com/defartsa23/python-library-quick-start.git
# Go into the repository
cd python-library-quick-start
```
* Rename the folder `your-package` to the package name you want. then place all your files into a folder. Open the `__init__.py` file with a text editor of your choice. In this file, you write nothing but the import statement which has the following schema:
```python
from .Filename import Classname
```
* Replace the information in the `setup.py` file with the matching content.
* Upload your package to PyPi
```sh
python setup.py sdist
twine upload dist/*
```
