Mercurial > code > home > repos > background_loop
annotate setup.py @ 6:2ab687f70854 0.3.0
release 0.3.0
author | drewp@bigasterisk.com |
---|---|
date | Wed, 22 Dec 2021 20:31:25 -0800 |
parents | 1c50dba6127b |
children |
rev | line source |
---|---|
0 | 1 from setuptools import setup |
2 | |
3 setup( | |
4 name='background_loop', | |
6 | 5 version='0.3.0', |
0 | 6 packages=['background_loop'], |
7 package_dir={'background_loop': ''}, | |
8 install_requires=[ | |
9 'prometheus_client', | |
10 'twisted', | |
11 ], | |
6 | 12 url='https://projects.bigasterisk.com/background-loop/background_loop-0.3.0.tar.gz', |
0 | 13 author='Drew Perttula', |
14 author_email='drewp@bigasterisk.com', | |
15 ) |