mirror of
https://github.com/gryf/ferrit.git
synced 2026-02-15 06:35:46 +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",
|
setup(author="Roman Dobosz, Szymon Datko",
|
||||||
author_email='gryf73@gmail.com',
|
author_email='gryf73@gmail.com',
|
||||||
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, '
|
python_requires='>=3.6',
|
||||||
'!=3.5.*',
|
|
||||||
classifiers=['Development Status :: 2 - Pre-Alpha',
|
classifiers=['Development Status :: 2 - Pre-Alpha',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'License :: OSI Approved :: BSD License',
|
'License :: OSI Approved :: BSD License',
|
||||||
'Natural Language :: English',
|
'Natural Language :: English',
|
||||||
"Programming Language :: Python :: 2",
|
|
||||||
'Programming Language :: Python :: 2.7',
|
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7'],
|
||||||
'Programming Language :: Python :: 3.8'],
|
|
||||||
description="Ferrit is a fake gerrit server for testing purposes",
|
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,
|
install_requires=requirements,
|
||||||
license="BSD license",
|
license="BSD license",
|
||||||
long_description=readme,
|
long_description=readme,
|
||||||
|
|||||||
5
tox.ini
5
tox.ini
@@ -1,13 +1,10 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist = py27, py35, py36, py37, py38, flake8
|
envlist = py36, py37, flake8
|
||||||
|
|
||||||
[travis]
|
[travis]
|
||||||
python =
|
python =
|
||||||
3.8: py38
|
|
||||||
3.7: py37
|
3.7: py37
|
||||||
3.6: py36
|
3.6: py36
|
||||||
3.5: py35
|
|
||||||
2.7: py27
|
|
||||||
|
|
||||||
[testenv:flake8]
|
[testenv:flake8]
|
||||||
basepython = python
|
basepython = python
|
||||||
|
|||||||
Reference in New Issue
Block a user