from setuptools import setup, find_packages

setup(
    name='covid19python',
    version='0.0.14',
    packages=find_packages(),
    url='https://github.com/thomaswoehlke/covid19python',
    license='GNU General Public License v3.0',
    author='thomaswoehlke',
    author_email='thomas.woehlke@gmail.com',
    description='Covid19 Data Aggregation - also a Project to learn Python Flask, SQLAlchemy, Celery et al.'
)