Skip to content

Mark PyPI package as inactive #39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

1.1.1.1 - 2025-06-??
--------------------

- Mark the project as inactive.

1.1.1 - 2019-04-04
------------------

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 1 addition & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand Down
4 changes: 2 additions & 2 deletions click_plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = '[email protected], [email protected]'
__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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down