From 302eded9b529df83e2bda03dd2427c942fc1d036 Mon Sep 17 00:00:00 2001 From: Rithic Date: Wed, 11 Aug 2021 19:22:51 +0530 Subject: [PATCH] 0.1.0 --- README.md | 2 +- build/lib/pymewc/__init__.py | 2 +- pymewc.egg-info/PKG-INFO | 6 +++--- pymewc/__init__.py | 2 +- setup.py | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 78b94b1..e244fd4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Pymewc ( Python Microcontroller Interface) ## _Making your microcontroller connect with python_ -_version:0.0.9.1 Alpha_ +_version:0.1.0 Beta_ [![Build Status](https://travis-ci.org/joemccann/dillinger.svg?branch=master)](https://travis-ci.org/joemccann/dillinger) [![PyPI - License](https://img.shields.io/pypi/l/length)](https://raw.githubusercontent.com/Ratheshprabakar/length/master/LICENSE.md) diff --git a/build/lib/pymewc/__init__.py b/build/lib/pymewc/__init__.py index 5864402..fa07d08 100644 --- a/build/lib/pymewc/__init__.py +++ b/build/lib/pymewc/__init__.py @@ -110,5 +110,5 @@ def blink(): def hello(): - print("Hello world, The package is properly installed version = 0.0.9.1") + print("Hello world, The package is properly installed version = 0.1.0") diff --git a/pymewc.egg-info/PKG-INFO b/pymewc.egg-info/PKG-INFO index fc652e8..8b1b6e6 100644 --- a/pymewc.egg-info/PKG-INFO +++ b/pymewc.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pymewc -Version: 0.0.9.1 +Version: 0.1.0 Summary: Microcontroller and python interface Home-page: UNKNOWN Author: Rithic C H @@ -9,7 +9,7 @@ License: UNKNOWN Description: # Pymewc ( Python Microcontroller Interface) ## _Making your microcontroller connect with python_ - _version:0.0.9.1 Alpha_ + _version:0.1.0 Beta_ [![Build Status](https://travis-ci.org/joemccann/dillinger.svg?branch=master)](https://travis-ci.org/joemccann/dillinger) [![PyPI - License](https://img.shields.io/pypi/l/length)](https://raw.githubusercontent.com/Ratheshprabakar/length/master/LICENSE.md) @@ -119,7 +119,7 @@ Description: # Pymewc ( Python Microcontroller Interface) Keywords: python,IoT,microcontroller,Arduino,Text-to-speech Platform: UNKNOWN -Classifier: Development Status :: 3 - Alpha +Classifier: Development Status :: 4 - Beta Classifier: Intended Audience :: Developers Classifier: Intended Audience :: Education Classifier: Intended Audience :: Science/Research diff --git a/pymewc/__init__.py b/pymewc/__init__.py index 5864402..fa07d08 100644 --- a/pymewc/__init__.py +++ b/pymewc/__init__.py @@ -110,5 +110,5 @@ def blink(): def hello(): - print("Hello world, The package is properly installed version = 0.0.9.1") + print("Hello world, The package is properly installed version = 0.1.0") diff --git a/setup.py b/setup.py index 08dadbc..577d433 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: LONG_DESCRIPTION= fh.read() -VERSION = '0.0.9.1' +VERSION = '0.1.0' DESCRIPTION = 'Microcontroller and python interface' # Setting up @@ -21,7 +21,7 @@ install_requires=['pyserial', 'pyttsx3', 'setuptools', 'pyfirmata2', 'matplotlib', 'numpy'], keywords=['python', 'IoT', 'microcontroller', 'Arduino', 'Text-to-speech'], classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Science/Research",