Metadata-Version: 2.1
Name: ezpackage
Version: 0.1.2
Summary: This is an easy way to write your own package.
Home-page: https://github.com/datanooblol/ezpackage
Author: datanooblol
Author-email: data.noob.lol@gmail.com
License: MIT
Keywords: ['python3','ez']
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE

# ezpackage  
[![PyPI Latest Release](https://img.shields.io/pypi/v/ezpackage)](https://pypi.org/project/ezpackage/) 
[![Downloads](https://img.shields.io/pypi/dm/ezpackage)](https://pypi.org/project/ezpackage/)
[![Repo Size](https://img.shields.io/github/repo-size/datanooblol/ezpackage)](https://pypi.org/project/ezpackage/)
[![License](https://img.shields.io/pypi/l/ezpackage)](https://pypi.org/project/ezpackage/)
[![Release Date](https://img.shields.io/github/release-date/datanooblol/ezpackage)](https://pypi.org/project/ezpackage/)

## What is ezpackage?

**ezpackage** is a Python package for building and sharing your python package in an easy way.  

## Where to get ezpackage  
The source code is currently hosted at GitHub:  
https://github.com/datanooblol/ezpackage  

The latest version is available at  
[Python Package Index (PyPI)](https://pypi.org/project/ezpackage/)  

```sh  
# pip  
pip install ezpackage  
```  

## How to use ezconfiguration  

Steps to follow:
```python
# import EzPackage
from ezpackage.package_manager import EzPackage

# initialize EzPackage object
ezpkg = EzPackage(template_package_name='your_package', 
                  template_version='v0.1.0', 
                  template_author_name='your_name', 
                  template_author_email='your-email@something.com', 
                  template_url='https://github.com/your-git-account/your-package',
                  template_description='A package summary.', 
                  template_install_requires=['dependency1', 'dependency2'],
                  template_keywords=['tag1', 'tag2'],
                  template_include_package_data=True,
                  template_python_requires='>=3.0'
                 )

# create setup.py at the same level of your package
ezpkg.create_setup_py(package_parent_dir='your-package-parent-directory')

# build packages including: build, dist, <your package>.egg-info
ezpkg.build_package()

# upload your package in /your-package-parent-directory/dist/* to pypi
ezpkg.upload_to_pypi(username='your-pypi-username', password='your-pypi-password')

# remove built packages from your-package-parent-directory
ezpkg.remove_built_package()
```
