view lib/devices_shared/setup.py @ 1450:ca96da46c73e

collector config Ignore-this: 627203d9daf08d043162603abceef88b darcs-hash:3e62e8034358866d145a9820df4223784d6c95f6
author drewp <drewp@bigasterisk.com>
date Wed, 25 Sep 2019 17:25:36 -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',
)