diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2019-02-18 21:03:11 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2019-02-18 21:03:11 +0100 |
commit | 5a689be2feeb3274aed258f49f7b3d6f6c10d995 (patch) | |
tree | a1061f35e62fa365e5e2bb2d1f412ea51ca3114c | |
parent | 79a36ab7fce80f3e87ff94c95bd310d2fdcc802a (diff) | |
download | dlp_check_version_PyPI-5a689be2feeb3274aed258f49f7b3d6f6c10d995.tar.gz |
Bump the version number and fix classifiers.0.1.0
-rw-r--r-- | setup.py | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,15 +1,16 @@ import os -import sys from setuptools import setup + def read(fname): with open(os.path.join(os.path.dirname(__file__), fname)) as inf: return "\n" + inf.read().replace("\r\n", "\n") + setup( name='dlp_check_version_PyPI', - version="0.0.1", + version="0.1.0", description='Check available versions of the upstream packages on PyPI', author=u'Matěj Cepl', author_email='mcepl@cepl.eu', @@ -18,8 +19,8 @@ setup( long_description=read("README.rst"), classifiers=[ "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.3", - "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Information Technology", |