1
0

py3 in setup.py and tox config

This commit is contained in:
Dmitry Sorokin
2017-02-05 14:31:17 +03:00
committed by ThomasV
parent 21101386a2
commit c86140a608
3 changed files with 6 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3
# python setup.py sdist --format=zip,gztar
@@ -11,8 +11,8 @@ import argparse
version = imp.load_source('version', 'lib/version.py')
if sys.version_info[:3] < (2, 7, 0):
sys.exit("Error: Electrum requires Python version >= 2.7.0...")
if sys.version_info[:3] < (3, 4, 0):
sys.exit("Error: Electrum requires Python version >= 3.4.0...")
data_files = []
@@ -36,7 +36,7 @@ setup(
name="Electrum",
version=version.ELECTRUM_VERSION,
install_requires=[
'pyaes',
'pyaes>=0.1a1',
'ecdsa>=0.9',
'pbkdf2',
'requests',