From 739279ff046ff828d6d4850dc837bc4f78130f55 Mon Sep 17 00:00:00 2001 From: Yury Yurevich Date: Sun, 21 Feb 2021 01:20:14 -0800 Subject: [PATCH] Bump up version, update classifiers. --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1b41577..1904e71 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import sys, os -version = '0.3rc1' +version = '0.4' setup(name='YDbf', version=version, @@ -13,11 +13,16 @@ each record is a dict. """, classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Operating System :: OS Independent', 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Topic :: Database', 'Topic :: Software Development :: Libraries :: Python Modules', ],