annotate 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 |
rev |
line source |
546
|
1 from setuptools import setup
|
|
2
|
|
3 setup(
|
|
4 name='export_to_influxdb',
|
658
|
5 version='0.2.0',
|
546
|
6 packages=['export_to_influxdb'],
|
|
7 package_dir={'export_to_influxdb': ''},
|
657
|
8 install_requires=[
|
|
9 'influxdb >= 3.0.0'
|
|
10 ],
|
658
|
11 url='https://projects.bigasterisk.com/export-to-influxdb/export_to_influxdb-0.2.0.tar.gz',
|
546
|
12 author='Drew Perttula',
|
|
13 author_email='drewp@bigasterisk.com',
|
|
14 )
|