diff --git a/README.rst b/README.rst index 24b42bdc15fc84f11dcc2c1d633062985eae5dc2..6d52ca0db5356b3a135e88cd444076c68b90205e 100644 --- a/README.rst +++ b/README.rst @@ -22,3 +22,18 @@ Copyright | Author: Pavel Kácha <pavel.kacha@cesnet.cz> | Use of this package is governed by the ISC license, see LICENSE file. | + + +Changelog +-------------------------------------------------------------------------------- + + +Version 0.1.14 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Unreleased + +- Added a config file for GitLab CI/CD. +- Fixed deprecation warnings for Python 3.7+ regarding ``collections.abc`` +- Updated the repository information. +- Updated packages versions. diff --git a/setup.py b/setup.py index 6973fae23b30e23b641ad72b7834805802dcafd5..e13dfcc201623142dc1807496b87cfcf908c0fde 100644 --- a/setup.py +++ b/setup.py @@ -46,14 +46,14 @@ setup( 'Programming Language :: Python', ], keywords = 'library', - url = 'https://gitlab.cesnet.cz/709/warden/typedcols', + project_urls={ + 'Documentation': 'https://709.gitlab-pages.cesnet.cz/warden/typedcols/master/html/manual.html', + 'Source': 'https://gitlab.cesnet.cz/709/warden/typedcols', + 'Tracker': 'https://gitlab.cesnet.cz/709/warden/typedcols/-/issues', + }, author = 'Pavel Kacha', author_email = 'pavel.kacha@cesnet.cz', license = 'ISC', py_modules = ['typedcols'], - test_suite = 'nose.collector', - tests_require = [ - 'nose' - ], zip_safe = True )