Release v0.3.0

This commit is contained in:
Miguel Grinberg
2019-05-05 20:32:55 +00:00
parent b9ca036e1d
commit 64cc172917
2 changed files with 4 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ from setuptools import setup
setup(
name='microdot-asyncio',
version='0.1.0',
version="0.3.0",
url='http://github.com/miguelgrinberg/microdot/',
license='MIT',
author='Miguel Grinberg',
@@ -16,7 +16,6 @@ setup(
description='AsyncIO support for the Microdot web framework',
long_description=__doc__,
py_modules=['microdot_asyncio'],
include_package_data=True,
platforms='any',
install_requires=[
'microdot',

View File

@@ -2,26 +2,21 @@
Microdot
--------
Impossibly small web framework for MicroPython.
The impossibly small web framework for MicroPython.
"""
from setuptools import setup
setup(
name='microdot',
version='0.2.0',
version="0.3.0",
url='http://github.com/miguelgrinberg/microdot/',
license='MIT',
author='Miguel Grinberg',
author_email='miguel.grinberg@gmail.com',
description='Impossibly small web framework for MicroPython',
description='The impossibly small web framework for MicroPython',
long_description=__doc__,
py_modules=['microdot'],
zip_safe=False,
include_package_data=True,
platforms='any',
tests_require=[
'coverage'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',