1
0
mirror of https://github.com/gryf/ferrit.git synced 2026-02-07 16:55:47 +01:00

Support python 3.6 or 3.7.

Python 2.7 is EOL, and 3.8 will be (re) added soon, since it's
unavailable on most distributions.
This commit is contained in:
2019-10-29 09:29:43 +01:00
parent 7297f8cf8b
commit ce6e2f19c8
2 changed files with 4 additions and 11 deletions

View File

@@ -13,20 +13,16 @@ requirements = ['paramiko', 'bottle']
setup(author="Roman Dobosz, Szymon Datko",
author_email='gryf73@gmail.com',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, '
'!=3.5.*',
python_requires='>=3.6',
classifiers=['Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'],
'Programming Language :: Python :: 3.7'],
description="Ferrit is a fake gerrit server for testing purposes",
entry_points={'console_scripts': ['ferrit=ferrit.cli:main']},
entry_points={'console_scripts': ['ferrit=ferrit.service:main']},
install_requires=requirements,
license="BSD license",
long_description=readme,