diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2016-07-24 00:55:33 +0200 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2016-07-24 00:58:37 +0200 |
commit | 8f54b1960e2050536f34f091c1de291febd486df (patch) | |
tree | 63de297dc93365e67cb2e0af2ee81e9d94e9fabb /setup.py | |
parent | fbb91144484ad729c2d6b54c69d4ce3a6c80aa55 (diff) | |
download | pyinflux-8f54b1960e2050536f34f091c1de291febd486df.tar.gz pyinflux-8f54b1960e2050536f34f091c1de291febd486df.zip |
fix small bug with parsing quoted escaped escapes
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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", |