Mercurial > code > home > repos > homeauto
annotate lib/devices_shared/setup.py @ 632:bf00280598c0
release 0.4.0
Ignore-this: b528d8e23ac48eb3c34b11b06aa45c1f
author | drewp@bigasterisk.com |
---|---|
date | Sun, 11 Aug 2019 03:26:06 -0700 |
parents | d7cd15c1d762 |
children | ae6aefbd7a10 |
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', | |
632 | 5 version='0.4.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 ], | |
632 | 13 url='https://projects.bigasterisk.com/devices-shared/devices_shared-0.4.0.tar.gz', |
533 | 14 author='Drew Perttula', |
15 author_email='drewp@bigasterisk.com', | |
16 ) |