view setup.py @ 19:47987502bf4c

Add graph, make it public, and bump the version. This checks in the tsc-compiled JS files because idklol.
author Paul Fisher <paul@pfish.zone>
date Sun, 13 Oct 2019 18:22:06 -0400
parents 6d59f038a58b
children a7fe635d1c88
line wrap: on
line source

import setuptools

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