annotate lib/export_to_influxdb/setup.py @ 660:e3af8cc7235d

try new graph+view widget Ignore-this: d5f9c5dc52f04324368716ba2f604fdb
author drewp@bigasterisk.com
date Sun, 24 Nov 2019 00:01:00 -0800
parents baafe88c504d
children 50b95bd96141
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
546
56ea46077ff5 export_to_influxdb to new package
drewp@bigasterisk.com
parents:
diff changeset
1 from setuptools import setup
56ea46077ff5 export_to_influxdb to new package
drewp@bigasterisk.com
parents:
diff changeset
2
56ea46077ff5 export_to_influxdb to new package
drewp@bigasterisk.com
parents:
diff changeset
3 setup(
56ea46077ff5 export_to_influxdb to new package
drewp@bigasterisk.com
parents:
diff changeset
4 name='export_to_influxdb',
658
baafe88c504d release 0.2.0
drewp@bigasterisk.com
parents: 657
diff changeset
5 version='0.2.0',
546
56ea46077ff5 export_to_influxdb to new package
drewp@bigasterisk.com
parents:
diff changeset
6 packages=['export_to_influxdb'],
56ea46077ff5 export_to_influxdb to new package
drewp@bigasterisk.com
parents:
diff changeset
7 package_dir={'export_to_influxdb': ''},
657
a2a9e60c7274 dep on influxdb
drewp@bigasterisk.com
parents: 547
diff changeset
8 install_requires=[
a2a9e60c7274 dep on influxdb
drewp@bigasterisk.com
parents: 547
diff changeset
9 'influxdb >= 3.0.0'
a2a9e60c7274 dep on influxdb
drewp@bigasterisk.com
parents: 547
diff changeset
10 ],
658
baafe88c504d release 0.2.0
drewp@bigasterisk.com
parents: 657
diff changeset
11 url='https://projects.bigasterisk.com/export-to-influxdb/export_to_influxdb-0.2.0.tar.gz',
546
56ea46077ff5 export_to_influxdb to new package
drewp@bigasterisk.com
parents:
diff changeset
12 author='Drew Perttula',
56ea46077ff5 export_to_influxdb to new package
drewp@bigasterisk.com
parents:
diff changeset
13 author_email='drewp@bigasterisk.com',
56ea46077ff5 export_to_influxdb to new package
drewp@bigasterisk.com
parents:
diff changeset
14 )