setup.py: add markers specifying Python 3 only compatibility

This commit is contained in:
matejcik 2018-03-05 19:11:16 +01:00
parent cd9bd06163
commit f63b34dbea
1 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,7 @@ setup(
],
scripts=['trezorctl'],
install_requires=install_requires,
python_requires='>=3.3',
include_package_data=True,
zip_safe=False,
classifiers=[
@ -47,5 +48,6 @@ setup(
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3 :: Only',
],
)