Skip to content
Snippets Groups Projects
setup.py 419 B
Newer Older
  • Learn to ignore specific revisions
  • Thomas Wöhlke's avatar
    Thomas Wöhlke committed
    from setuptools import setup, find_packages
    
    thomaswoehlke's avatar
    thomaswoehlke committed
    
    setup(
    
    thomaswoehlke's avatar
    thomaswoehlke committed
        name='covid19python',
    
        version='0.0.14',
    
    Thomas Wöhlke's avatar
    Thomas Wöhlke committed
        packages=find_packages(),
    
    thomaswoehlke's avatar
    thomaswoehlke committed
        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.'
    )