view lib/devices_shared/setup.py @ 1407:6c86c6a87eab

update standardservice. add --dns to all docker runs Ignore-this: 7439dab992e614fa8fa562f4f750e57b darcs-hash:f765086ee3524d876864142fc6c37d971ec970ac
author drewp <drewp@bigasterisk.com>
date Tue, 23 Jul 2019 10:29:31 -0700
parents f54660b33a24
children d7cd15c1d762
line wrap: on
line source

from setuptools import setup
 
setup(
    name='devices_shared',
    version='0.3.0',
    packages=['devices_shared'],
    package_dir={'devices_shared': ''},
    install_requires=[
        'numpy',
        'imageio',
        'rdflib',
    ],
    url='https://projects.bigasterisk.com/devices_shared/devices_shared-0.3.0.tar.gz',
    author='Drew Perttula',
    author_email='drewp@bigasterisk.com',
)