view setup.py @ 24:20c8ec56e447

logfile: Pull logfile thread out of Logger. This enables automatic garbage collection of Logger instances, since a running thread no longer has a reference to a Logger's self. It separates exclusive management of logfile state into the _writer_thread function, which now opens the file and writes it until it is told to stop by receiving the poison pill.
author Paul Fisher <paul@pfish.zone>
date Sun, 10 Nov 2019 23:07:11 -0500
parents 88249e451566
children 7def5611895b
line wrap: on
line source

import setuptools

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