view lib/devices_shared/setup.py @ 1572:5dbabcff90b8

release 0.4.0 Ignore-this: 2d669bec63a29e84d7580f982559122d darcs-hash:d45f0df04b561fa5f562ec421157de82996135f2
author drewp <drewp@bigasterisk.com>
date Thu, 14 May 2020 22:29:55 -0700
parents 07b5df124209
children
line wrap: on
line source

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