diff --git a/CHANGELOG.md b/CHANGELOG.md index 13571c5f670d25a820a6362a22762f286859c38d..9ce974f4e2152b74ac32787ebd8e11b6fd92de5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. +2.2 (25-Apr-2018) + +Features: + + * Changes to setup.py file to use setuptools for the setup + + 2.1 (26-Dec-2017) Features: diff --git a/setup.py b/setup.py index 7f6b42fcc0351da24c4f0bb5fe4576e49ef7fd01..257d844f1c01bf6703c6a8a714c6ceab55570928 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ -from distutils.core import setup +from setuptools import setup setup(name = "helpman", -version = "2.1", +version = "2.2", description = "quick & easy access to 4000+ manuals / guides / tutorials", author = "Nathan SR", author_email = "cquickcal@gmail.com",