Merge pull request #110 from linkmauve/patch-1
Stop advertising python2 support
This commit is contained in:
commit
438838dd4e
1 changed files with 1 additions and 3 deletions
4
setup.py
4
setup.py
|
|
@ -21,8 +21,6 @@ setup_requires = ['setuptools_scm']
|
||||||
classifiers = """
|
classifiers = """
|
||||||
Environment :: Console
|
Environment :: Console
|
||||||
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
||||||
Programming Language :: Python :: 2
|
|
||||||
Programming Language :: Python :: 2.7
|
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.3
|
Programming Language :: Python :: 3.3
|
||||||
Programming Language :: Python :: 3.4
|
Programming Language :: Python :: 3.4
|
||||||
|
|
@ -46,7 +44,7 @@ setup(
|
||||||
packages=packages,
|
packages=packages,
|
||||||
package_data={'': ['LICENSE', 'README.md']},
|
package_data={'': ['LICENSE', 'README.md']},
|
||||||
package_dir={'colout': 'colout'},
|
package_dir={'colout': 'colout'},
|
||||||
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*',
|
python_requires='>=3.3',
|
||||||
setup_requires=setup_requires,
|
setup_requires=setup_requires,
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=requires,
|
install_requires=requires,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue