Skip to content
Snippets Groups Projects
Commit bf1aa0c6 authored by Hugo's avatar Hugo Committed by Claudiu Popa
Browse files

Update classifiers and add python_requires

parent 444c878e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -20,3 +20,4 @@ debian/pylint.substvars
debian/pylint
.coverage
.coverage.*
.idea
Loading
Loading
@@ -67,7 +67,15 @@ classifiers = ['Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: Jython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Debuggers',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing'
Loading
Loading
Loading
Loading
@@ -129,9 +129,6 @@ def install(**kwargs):
if USE_SETUPTOOLS:
if '--force-manifest' in sys.argv:
sys.argv.remove('--force-manifest')
# install-layout option was introduced in 2.5.3-1~exp1
elif sys.version_info < (2, 5, 4) and '--install-layout=deb' in sys.argv:
sys.argv.remove('--install-layout=deb')
packages = [modname] + get_packages(join(base_dir, 'pylint'), modname)
if USE_SETUPTOOLS:
if install_requires:
Loading
Loading
@@ -163,6 +160,7 @@ def install(**kwargs):
cmdclass=cmdclass,
extras_require=extras_require,
test_suite='test',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
**kwargs)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment