view lib/devices_shared/setup.py @ 541:3b4915ab7b74

switch to setuptools and 'install_requires' Ignore-this: ffb0aa596145b0ab6ce9983b399ef58b
author drewp@bigasterisk.com
date Thu, 25 Apr 2019 22:59:43 -0700
parents 4ce968eecaa9
children 68d559a2c2ae
line wrap: on
line source

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