From 05eec2378038e3feda7a3300df3c6c3de36b98cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Caletka?= Date: Thu, 12 Jul 2018 14:43:46 +0200 Subject: [PATCH] Add minimal required python version and classifiers --- setup.py | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e04fc2b..003cfdf 100644 --- a/setup.py +++ b/setup.py @@ -9,12 +9,26 @@ setup( author_email="ondrej@caletka.cz", license="MIT", py_modules=["dzonegit"], - setup_requires=['pytest-runner', ], - tests_require=['pytest', ], + setup_requires=["pytest-runner"], + python_requires=">=3.5", + tests_require=["pytest"], entry_points={ "console_scripts": [ "dzonegit = dzonegit:main", "dzonegit-pre-commit = dzonegit:pre_commit", ], }, + classifiers=[ + "Development Status :: 3 - Alpha", + "Environment :: Console", + "Intended Audience :: System Administrators", + "License :: OSI Approved :: MIT License", + "Operating System :: POSIX :: Linux", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3 :: Only", + "Topic :: Software Development :: Version Control :: Git", + "Topic :: System :: Systems Administration", + ], + )