view lib/devices_shared/setup.py @ 1380:7229daca9c9a

simple api checks for (any) user too Ignore-this: 84192f452f44ba481f77629bf065f2d1 darcs-hash:f1b3dc8be5cefd577c09268c2564645c6529c22c
author drewp <drewp@bigasterisk.com>
date Mon, 06 May 2019 21:11:00 -0700
parents f54660b33a24
children d7cd15c1d762
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',
)