Mercurial > code > home > repos > homeauto
annotate lib/cycloneerr/setup.py @ 1428:56e07d3f0930
frontdoor configs; move device class timing to greplin stats
Ignore-this: f32495ae0d3b4c6f50fe1ba46c57abcd
darcs-hash:c8b6f8460b858868837dc9c98f844528531fe98c
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Thu, 08 Aug 2019 16:50:14 -0700 |
parents | a6bc8989b5b9 |
children | 11712539f4df |
rev | line source |
---|---|
1344
4d3b31903c04
switch to setuptools and 'install_requires'
drewp <drewp@bigasterisk.com>
parents:
1329
diff
changeset
|
1 from setuptools import setup |
1315 | 2 |
3 setup( | |
4 name='cycloneerr', | |
1345 | 5 version='0.3.0', |
1315 | 6 packages=['cycloneerr'], |
7 package_dir={'cycloneerr': ''}, | |
1344
4d3b31903c04
switch to setuptools and 'install_requires'
drewp <drewp@bigasterisk.com>
parents:
1329
diff
changeset
|
8 install_requires=['cyclone'], |
1345 | 9 url='https://projects.bigasterisk.com/cycloneerr/cycloneerr-0.3.0.tar.gz', |
1315 | 10 author='Drew Perttula', |
11 author_email='drewp@bigasterisk.com', | |
12 ) |