view lib/devices_shared/setup.py @ 728:17ff9322328b

an attempt as ESP-IDF build (doesn't work) calling a nim-generated main function (also doesn't work) Ignore-this: d43cda6cf70930a20864cae066f11739
author drewp@bigasterisk.com
date Thu, 23 Jan 2020 23:46:34 -0800
parents ae6aefbd7a10
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',
)