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:
10
setup.py
10
setup.py
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user