summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorYves Fischer <yvesf-git@xapek.org>2016-07-24 00:55:33 +0200
committerYves Fischer <yvesf-git@xapek.org>2016-07-24 00:58:37 +0200
commit8f54b1960e2050536f34f091c1de291febd486df (patch)
tree63de297dc93365e67cb2e0af2ee81e9d94e9fabb /setup.py
parentfbb91144484ad729c2d6b54c69d4ce3a6c80aa55 (diff)
downloadpyinflux-8f54b1960e2050536f34f091c1de291febd486df.tar.gz
pyinflux-8f54b1960e2050536f34f091c1de291febd486df.zip
move doctest to unittestHEADmaster
fix small bug with parsing quoted escaped escapes
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 6796374..c0cf5cd 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
-from distutils.core import setup
+from setuptools import setup
version = '0.1'
@@ -12,6 +12,7 @@ setup(name='pyinflux',
packages=['pyinflux.client', 'pyinflux.parser'],
url='https://github.com/yvesf/pyinflux',
install_requires=[],
+ tests_require=['funcparserlib==0.3.6'],
extras_require={'parser': ['funcparserlib==0.3.6']},
classifiers=[
"Programming Language :: Python",