Metadata-Version: 2.1
Name: Python-DevOps
Version: 0.19
Summary: Sample of How Implement CI for python project and Build Docker image for Shippable product.
Home-page: https://fanoosrahnama.ir
Author: Mostafa Ramezani
Author-email: crystalsoft2010@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Requires-Dist: Flask (>=1.1.1)

# Python_CI_CD_Test
This is an example project demostrating how to use Devops (CircleCi,Travis,GitLab) in Python.


## Installation
Run the following to install:

'''python
pip install PythonDevOps
'''

...
## Usage

'''python

from helloworld import hello
# Generate hello message
hello()

## Usage

'''python

from calculator import add

# Generate Add Calculate
add(2,3)


