annotate setup.py @ 0:a340a9bdaedb

factor this out from wherever it was
author drewp@bigasterisk.com
date Wed, 22 Dec 2021 19:23:34 -0800
parents
children 10defe60b8a5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
1 from setuptools import setup
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
2
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
3 setup(
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
4 name='background_loop',
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
5 version='0.0.0',
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
6 packages=['background_loop'],
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
7 package_dir={'background_loop': ''},
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
8 install_requires=[
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
9 'prometheus_client',
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
10 'twisted',
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
11 ],
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
12 url='https://projects.bigasterisk.com/background_loop/background_loop-0.0.0.tar.gz',
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
13 author='Drew Perttula',
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
14 author_email='drewp@bigasterisk.com',
a340a9bdaedb factor this out from wherever it was
drewp@bigasterisk.com
parents:
diff changeset
15 )