view 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
line wrap: on
line source

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