view lib/devices_shared/setup.py @ 631:d7cd15c1d762

fix download url separator Ignore-this: 2426fe3cc2f5fd30e5c9c87903fed4f4
author drewp@bigasterisk.com
date Sun, 11 Aug 2019 03:25:50 -0700
parents 68d559a2c2ae
children bf00280598c0
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',
)