From fb3eb5807450e39db88b0a24e4e6f8abceecb8ad Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 11 Jun 2018 10:09:20 +0300 Subject: [PATCH 1/3] Add python_requires to help pip, and version classifers --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index db9511a..57fa05c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,10 +13,15 @@ requires = [ "pywinpty (>=0.5);os_name=='nt'", "tornado (>=4)", ] +python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" classifiers=[ "Environment :: Web Environment", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", "Topic :: Terminals :: Terminal Emulators/X Terminals", ] From 7ea8cd6383cbb5063400f7c8e6597d9c9c74a7fd Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 11 Jun 2018 21:52:03 +0300 Subject: [PATCH 2/3] Remove x.y classifiers --- pyproject.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 57fa05c..59f7186 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,10 +18,6 @@ classifiers=[ "Environment :: Web Environment", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", "Topic :: Terminals :: Terminal Emulators/X Terminals", ] From a4c5a25c08d07b2cff4561751290338473263f43 Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 11 Jun 2018 21:52:35 +0300 Subject: [PATCH 3/3] Correct field name --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 59f7186..f24d611 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ requires = [ "pywinpty (>=0.5);os_name=='nt'", "tornado (>=4)", ] -python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +requires-python=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" classifiers=[ "Environment :: Web Environment", "License :: OSI Approved :: BSD License",