view setup.py @ 4:e7c8dcc5fc15

Make the weather server pip-installable and locally runnable.
author Paul Fisher <paul@pfish.zone>
date Sun, 29 Sep 2019 15:10:18 -0400
parents
children f8c2cb05d643
line wrap: on
line source

import setuptools

setuptools.setup(
    name='weather-server',
    version='0.0.1',
    packages=setuptools.find_packages(),
    python_requires='>=3.7',
    install_requires=[
        'attrs',
        'flask',
        'flup',
        'pymongo',
        'pytz',
    ],
    setup_requires=['wheel'],
)