view setup.py @ 1:10defe60b8a5 0.1.0

release 0.1.0
author drewp@bigasterisk.com
date Wed, 22 Dec 2021 19:23:44 -0800
parents a340a9bdaedb
children 1c50dba6127b
line wrap: on
line source

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