diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 63a1cb1..0000000 --- a/.travis.yml +++ /dev/null @@ -1,30 +0,0 @@ -sudo: false -dist: xenial - -language: python -cache: pip - -python: - - 2.7 - - 3.4 - - 3.5 - - 3.6 - - 3.7 - -env: - matrix: - - CLICK_VERSION=4.1 - - CLICK_VERSION=5.1 - - CLICK_VERSION=6.7 - - CLICK_VERSION=7 - -install: - - pip install coveralls - - pip install -e ".[dev]" - - pip install "click==${CLICK_VERSION}" - -script: - - pytest tests --cov click_plugins --cov-report term-missing - -after_success: - - coveralls diff --git a/CHANGES.md b/CHANGES.md index 5336b5b..21ca151 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,11 @@ Changelog ========= +1.1.1.1 - 2025-06-24 +-------------------- + +- Mark the project as inactive. + 1.1.1 - 2019-04-04 ------------------ diff --git a/LICENSE.txt b/LICENSE.txt index 8fbd353..becff56 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ New BSD License -Copyright (c) 2015-2019, Kevin D. Wurster, Sean C. Gillies +Copyright (c) 2015-2025, Kevin D. Wurster, Sean C. Gillies All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.rst b/README.rst index 5fefaa1..fc6c9e1 100644 --- a/README.rst +++ b/README.rst @@ -2,13 +2,7 @@ click-plugins ============= -.. image:: https://travis-ci.org/click-contrib/click-plugins.svg?branch=master - :target: https://travis-ci.org/click-contrib/click-plugins?branch=master - -.. image:: https://coveralls.io/repos/click-contrib/click-plugins/badge.svg?branch=master&service=github - :target: https://coveralls.io/github/click-contrib/click-plugins?branch=master - -An extension module for `click <https://github.com/mitsuhiko/click>`_ to register +An extension module for `click <https://github.com/pallets/click>`_ to register external CLI commands via setuptools entry-points. diff --git a/click_plugins/__init__.py b/click_plugins/__init__.py index 6bdfe38..6c03ba8 100644 --- a/click_plugins/__init__.py +++ b/click_plugins/__init__.py @@ -24,14 +24,14 @@ def subcommand(arg): from click_plugins.core import with_plugins -__version__ = '1.1.1' +__version__ = '1.1.1.1' __author__ = 'Kevin Wurster, Sean Gillies' __email__ = 'wursterk@gmail.com, sean.gillies@gmail.com' __source__ = 'https://github.com/click-contrib/click-plugins' __license__ = ''' New BSD License -Copyright (c) 2015-2019, Kevin D. Wurster, Sean C. Gillies +Copyright (c) 2015-2025, Kevin D. Wurster, Sean C. Gillies All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/setup.py b/setup.py index bdd198f..ebf50a5 100755 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ classifiers=[ 'Topic :: Utilities', 'Intended Audience :: Developers', - 'Development Status :: 5 - Production/Stable', + 'Development Status :: 7 - Inactive', 'License :: OSI Approved :: BSD License', 'Programming Language :: Python', 'Programming Language :: Python :: 3',