diff options
author | Christophe Vu-Brugier <cvubrugier@yahoo.fr> | 2013-10-22 19:06:31 +0200 |
---|---|---|
committer | Christophe Vu-Brugier <cvubrugier@yahoo.fr> | 2013-10-22 19:06:31 +0200 |
commit | d7e6b231ad7c5969a2002cca76c6c0af8084134c (patch) | |
tree | 11e9edf0c95f706791f6e70d1177943f25c1c956 /setup.py | |
parent | b756775b96c41d5dfe37a46219e7970a36ca5de8 (diff) | |
download | targetcli-d7e6b231ad7c5969a2002cca76c6c0af8084134c.tar.gz |
Use 2to3 in setup.py and mention that targetcli-fb is Python 3 compatible
Signed-off-by: Christophe Vu-Brugier <cvubrugier@yahoo.fr>
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -16,7 +16,7 @@ License for the specific language governing permissions and limitations under the License. ''' -from distutils.core import setup +from setuptools import setup __version__ = '' exec(open('targetcli/version.py').read()) @@ -31,4 +31,5 @@ setup( url = 'http://github.com/agrover/targetcli-fb', packages = ['targetcli'], scripts = ['scripts/targetcli'], + use_2to3 = True, ) |