annotate setup.py @ 8:c6a04a1a98a1

ignore
author drewp@bigasterisk.com
date Wed, 22 Dec 2021 20:36:21 -0800
parents 2ab687f70854
children
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',
6
2ab687f70854 release 0.3.0
drewp@bigasterisk.com
parents: 3
diff changeset
5 version='0.3.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 ],
6
2ab687f70854 release 0.3.0
drewp@bigasterisk.com
parents: 3
diff changeset
12 url='https://projects.bigasterisk.com/background-loop/background_loop-0.3.0.tar.gz',
0
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 )