annotate lib/export_to_influxdb/setup.py @ 605:ad4c4d7c1fb9
reasoning output using treq, and keep writing to PUT calls forever (but not as fast as the reasoning loop runs)
Ignore-this: 1633b16dc315082f759041d42e848ced
author |
drewp@bigasterisk.com |
date |
Tue, 23 Jul 2019 17:30:46 -0700 |
parents |
6d482537e4cc |
children |
a2a9e60c7274 |
rev |
line source |
546
|
1 from setuptools import setup
|
|
2
|
|
3 setup(
|
|
4 name='export_to_influxdb',
|
547
|
5 version='0.1.0',
|
546
|
6 packages=['export_to_influxdb'],
|
|
7 package_dir={'export_to_influxdb': ''},
|
547
|
8 url='https://projects.bigasterisk.com/export-to-influxdb/export_to_influxdb-0.1.0.tar.gz',
|
546
|
9 author='Drew Perttula',
|
|
10 author_email='drewp@bigasterisk.com',
|
|
11 )
|