annotate lib/export_to_influxdb/setup.py @ 546:56ea46077ff5
export_to_influxdb to new package
Ignore-this: 573ebd40dcc63350bce2bf573f8908c1
author |
drewp@bigasterisk.com |
date |
Thu, 25 Apr 2019 23:12:39 -0700 |
parents |
|
children |
6d482537e4cc |
rev |
line source |
546
|
1 from setuptools import setup
|
|
2
|
|
3 setup(
|
|
4 name='export_to_influxdb',
|
|
5 version='0.0.0',
|
|
6 packages=['export_to_influxdb'],
|
|
7 package_dir={'export_to_influxdb': ''},
|
|
8 url='https://projects.bigasterisk.com/export-to-influxdb/export_to_influxdb-0.0.0.tar.gz',
|
|
9 author='Drew Perttula',
|
|
10 author_email='drewp@bigasterisk.com',
|
|
11 )
|