setup.py: install_requires=['six>=1.11.0']

We will require the popular [__six__](https://pypi.org/project/six) module to simplify our support of both Python 2 and Python 3.
This commit is contained in:
cclauss 2018-05-07 19:12:00 +02:00 committed by GitHub
parent c4cb0dbe39
commit 052f64c5ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,8 @@ setup(
'*.h', '*.cpp', '*.bash', '*.txt',
'*.dll', '*.lib', '*.so', '*.pyd',
'*.dat', '*.ini', '*.pfx', '*.scc', '*.crt', '*.key']},
install_requires=['six>=1.11.0'],
extras_require={
'tq': ["tornado>=4.5.1", "sortedcontainers>=1.5.7"],
}
)
)