view lib/devices_shared/setup.py @ 1358:fda1e7bdecb7

release 0.1.0 Ignore-this: 3360059fc57b39c0260ad5dafabd3144 darcs-hash:8b49fb1c767f63dbac8e7e3cf14bbe4609587d57
author drewp <drewp@bigasterisk.com>
date Tue, 30 Apr 2019 23:37:30 -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',
)