summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkiorky <kiorky@cryptelium.net>2018-08-07 12:03:22 +0200
committerGitHub <noreply@github.com>2018-08-07 12:03:22 +0200
commit6f94de46a7f459bf09c9b9771c8e36fd5a77ac07 (patch)
tree0c76eeb88ba262d9f9065ab2c7f8bd45d0d893f4
parent11b1a9b4760bac29e952b1b2b94a28ae7f660fc2 (diff)
parenta358d79156ea1a0b4dd7af6f5959397ebeb052c1 (diff)
downloadcroniter-6f94de46a7f459bf09c9b9771c8e36fd5a77ac07.tar.gz
Merge pull request #21 from hugovk/trove
Add python_requires and Trove classifiers
-rw-r--r--setup.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 8dca27f..7ffdbf1 100644
--- a/setup.py
+++ b/setup.py
@@ -36,6 +36,7 @@ setup(
keywords='datetime, iterator, cron',
install_requires=install_requires,
license="MIT License",
+ python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
@@ -43,7 +44,11 @@ setup(
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
+ "Programming Language :: Python :: 2.6",
+ "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
+ "Programming Language :: Python :: 3.4",
+ "Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries :: Python Modules"],
packages=find_packages('src'),
package_dir={'': 'src'},