view setup.py @ 8:c6a04a1a98a1

ignore
author drewp@bigasterisk.com
date Wed, 22 Dec 2021 20:36:21 -0800
parents 2ab687f70854
children
line wrap: on
line source

from setuptools import setup
 
setup(
    name='background_loop',
    version='0.3.0',
    packages=['background_loop'],
    package_dir={'background_loop': ''},
    install_requires=[
        'prometheus_client',
        'twisted',      
    ],
    url='https://projects.bigasterisk.com/background-loop/background_loop-0.3.0.tar.gz',
    author='Drew Perttula',
    author_email='drewp@bigasterisk.com',
)