view lib/export_to_influxdb/setup.py @ 668:aaabba10ce04

try using tcp to talk to host pulse Ignore-this: 330703f97be6f3e3490d0d1fb1c8f90f
author drewp@bigasterisk.com
date Sat, 21 Dec 2019 16:01:25 -0800
parents baafe88c504d
children 50b95bd96141
line wrap: on
line source

from setuptools import setup
 
setup(
    name='export_to_influxdb',
    version='0.2.0',
    packages=['export_to_influxdb'],
    package_dir={'export_to_influxdb': ''},
    install_requires=[
      'influxdb >= 3.0.0'
    ],
    url='https://projects.bigasterisk.com/export-to-influxdb/export_to_influxdb-0.2.0.tar.gz',
    author='Drew Perttula',
    author_email='drewp@bigasterisk.com',
)