-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
79 lines (75 loc) · 2.83 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
def get_long_description():
if sys.version_info > (3,):
with open('README.rst', encoding='utf-8') as f:
readme = f.read()
else:
with open('README.rst') as f:
readme = f.read().decode("utf-8")
return readme
setup(
name='pyinfluxql',
version='0.1.3',
url='https://github.com/daq-tools/pyinfluxql',
author='Jeremiah Malina <[email protected]>, Michael Pérez <[email protected]>',
author_email='[email protected]',
maintainer='Andreas Motl',
maintainer_email='[email protected]',
description='A query generator for the SQL dialect of the Influx Query Language (InfluxQL)',
long_description=get_long_description(),
keywords='influxdb influxql sql query generator acquisition graphing export engine',
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Communications",
"Topic :: Database",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Archiving",
"Topic :: System :: Networking :: Monitoring",
"Topic :: Text Processing",
"Topic :: Utilities",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
],
packages=find_packages(),
zip_safe=False,
include_package_data=True,
platforms=['any'],
install_requires=[
"six>=1.9.0,<2",
"influxdb>=2.8.0,<6",
],
extras_require={
"test": [
"pytest>=4.6.11,<7",
],
},
)