summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Finucane <stephenfin@redhat.com>2020-04-21 11:25:43 +0100
committerStephen Finucane <stephenfin@redhat.com>2020-04-21 15:14:20 +0100
commitee784d5de70b1b55a7ab616b32a098498ba9e391 (patch)
tree7d906d8033f41041952489ad93b1c7e25b9dd4c1
parent1aca4bcbb740e3498fa64b4a6d279b022c74db66 (diff)
downloadstevedore-ee784d5de70b1b55a7ab616b32a098498ba9e391.tar.gz
Remove dead files
You don't need a MANIFEST.in file when using pbr, and the announce.rst file wasn't referenced anywhere and has been effectively replaced by reno. Change-Id: Ib40d6f194a47901487c4fca1220dad7002d31984 Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
-rw-r--r--MANIFEST.in5
-rw-r--r--announce.rst38
2 files changed, 0 insertions, 43 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
deleted file mode 100644
index 0981f37..0000000
--- a/MANIFEST.in
+++ /dev/null
@@ -1,5 +0,0 @@
-include setup.py
-recursive-include docs *.rst *.py *.html *.css *.js *.png *.txt *.jpg
-recursive-include tests *.py
-include tox.ini
-include LICENSE
diff --git a/announce.rst b/announce.rst
deleted file mode 100644
index 2a6269c..0000000
--- a/announce.rst
+++ /dev/null
@@ -1,38 +0,0 @@
-================
- stevedore 0.14
-================
-
-.. tags:: stevedore release python
-
-What is stevedore?
-==================
-
-Python makes loading code dynamically easy, allowing you to configure
-and extend your application by discovering and loading extensions
-("*plugins*") at runtime. Many applications implement their own
-library for doing this, using ``__import__`` or
-``importlib``. stevedore_ avoids creating yet another extension
-mechanism by building on top of `setuptools entry points`_. The code
-for managing entry points tends to be repetitive, though, so stevedore
-provides manager classes for implementing common patterns for using
-dynamically loaded extensions.
-
-.. _stevedore: http://stevedore.readthedocs.org
-
-.. _setuptools entry points: https://setuptools.readthedocs.io/en/latest/pkg_resources.html#convenience-api
-
-
-What's New?
-===========
-
-- Provide an option to control requirements checking when loading
- plugins, and disable it by default. This removes protection against
- loading the wrong version of a plugin, or that plugin's
- dependencies.
-
-
-Installing
-==========
-
-Visit the stevedore_ project page for download links and installation
-instructions.