view lib/devices_shared/setup.py @ 1448:420effc5e138

makefile to invoke Ignore-this: 766949fabca4a9edfecba59c493899ef darcs-hash:06deb9d383c5c890f9577edb962e6db36e37e87e
author drewp <drewp@bigasterisk.com>
date Wed, 25 Sep 2019 17:25:16 -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',
)