aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2014-07-29 11:53:35 +0200
committerThibaut Horel <thibaut.horel@gmail.com>2014-07-29 11:53:35 +0200
commit31abd3e433338ae170d9dddca156010b16dedfe9 (patch)
tree8d575a775fea5823ca727a625ac498d60df8c610 /setup.py
parent0111b8a1ecd7138164b44bfbcf18a2563bcb10b6 (diff)
downloadpython-pushover-31abd3e433338ae170d9dddca156010b16dedfe9.tar.gz
Add support for python3
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 87a778b..621ef3d 100644
--- a/setup.py
+++ b/setup.py
@@ -12,5 +12,6 @@ setup(name='python-pushover',
py_modules=['pushover'],
entry_points={"console_scripts": ["pushover = pushover:main"]},
install_requires=['requests>=1.0'],
+ use_2to3=True,
license='GNU GPLv3'
)