Commit 1a47410e authored by Vincent Pelletier's avatar Vincent Pelletier Committed by Vincent Pelletier

setup: Use 2to3 when invoked by python3.

parent 8ce08bf9
......@@ -19,6 +19,7 @@
from setuptools import setup, find_packages
import glob
import os
import sys
import versioneer
long_description = open("README.rst").read() + "\n"
......@@ -67,4 +68,5 @@ setup(
]
},
test_suite='caucase.test',
use_2to3=sys.version_info >= (3, ),
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment