Browse Source

setup.py: added python version classifiers

Fabian Peter Hammerle 4 years ago
parent
commit
5808d6185b
2 changed files with 5 additions and 1 deletions
  1. 1 0
      README.md
  2. 4 1
      setup.py

+ 1 - 0
README.md

@@ -2,6 +2,7 @@
 
 [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
 [![Build Status](https://travis-ci.org/fphammerle/free-disk.svg?branch=master)](https://travis-ci.org/fphammerle/free-disk)
+[![Python Version](https://img.shields.io/pypi/pyversions/free-disk.svg)](https://pypi.org/project/free-disk/)
 
 Delete file with the oldest modification date
 until a minimum of `--free-bytes` are available on the respective disk.

+ 4 - 1
setup.py

@@ -16,7 +16,10 @@ setuptools.setup(
         "Intended Audience :: System Administrators",
         "License :: OSI Approved :: MIT License",
         "Operating System :: POSIX",
-        "Programming Language :: Python :: 3",
+        "Programming Language :: Python :: 3.4",
+        "Programming Language :: Python :: 3.5",
+        "Programming Language :: Python :: 3.6",
+        "Programming Language :: Python :: 3.7",
         "Topic :: System :: Filesystems",
         "Topic :: Utilities",
     ],