Mercurial > code > home > repos > homeauto
annotate lib/devices_shared/setup.py @ 541:3b4915ab7b74
switch to setuptools and 'install_requires'
Ignore-this: ffb0aa596145b0ab6ce9983b399ef58b
author | drewp@bigasterisk.com |
---|---|
date | Thu, 25 Apr 2019 22:59:43 -0700 |
parents | 4ce968eecaa9 |
children | 68d559a2c2ae |
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', | |
540 | 5 version='0.2.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 ], | |
540 | 13 url='https://projects.bigasterisk.com/devices_shared/devices_shared-0.2.0.tar.gz', |
533 | 14 author='Drew Perttula', |
15 author_email='drewp@bigasterisk.com', | |
16 ) |