Mercurial > code > home > repos > homeauto
annotate lib/cycloneerr/setup.py @ 728:17ff9322328b
an attempt as ESP-IDF build (doesn't work) calling a nim-generated main function (also doesn't work)
Ignore-this: d43cda6cf70930a20864cae066f11739
author | drewp@bigasterisk.com |
---|---|
date | Thu, 23 Jan 2020 23:46:34 -0800 |
parents | 4113931e5035 |
children | 11712539f4df |
rev | line source |
---|---|
541
3b4915ab7b74
switch to setuptools and 'install_requires'
drewp@bigasterisk.com
parents:
526
diff
changeset
|
1 from setuptools import setup |
512 | 2 |
3 setup( | |
4 name='cycloneerr', | |
542 | 5 version='0.3.0', |
512 | 6 packages=['cycloneerr'], |
7 package_dir={'cycloneerr': ''}, | |
541
3b4915ab7b74
switch to setuptools and 'install_requires'
drewp@bigasterisk.com
parents:
526
diff
changeset
|
8 install_requires=['cyclone'], |
542 | 9 url='https://projects.bigasterisk.com/cycloneerr/cycloneerr-0.3.0.tar.gz', |
512 | 10 author='Drew Perttula', |
11 author_email='drewp@bigasterisk.com', | |
12 ) |