Mercurial > code > home > repos > homeauto
annotate lib/devices_shared/setup.py @ 1708:3cfd3693a4ac
quick fixes for cyclone sse
author | drewp@bigasterisk.com |
---|---|
date | Wed, 17 Nov 2021 14:25:14 -0800 |
parents | ae6aefbd7a10 |
children |
rev | line source |
---|---|
541
3b4915ab7b74
switch to setuptools and 'install_requires'
drewp@bigasterisk.com
parents:
540
diff
changeset
|
1 from setuptools import setup |
533 | 2 |
3 setup( | |
4 name='devices_shared', | |
635 | 5 version='0.5.0', |
533 | 6 packages=['devices_shared'], |
7 package_dir={'devices_shared': ''}, | |
541
3b4915ab7b74
switch to setuptools and 'install_requires'
drewp@bigasterisk.com
parents:
540
diff
changeset
|
8 install_requires=[ |
533 | 9 'numpy', |
10 'imageio', | |
11 'rdflib', | |
12 ], | |
635 | 13 url='https://projects.bigasterisk.com/devices-shared/devices_shared-0.5.0.tar.gz', |
533 | 14 author='Drew Perttula', |
15 author_email='drewp@bigasterisk.com', | |
16 ) |