From 9efc3bf87841a37fa97d4ca3b1f48597ead81cf6 Mon Sep 17 00:00:00 2001 From: Jason Madden Date: Tue, 28 Jun 2016 15:08:20 -0500 Subject: [PATCH] sync manifest.in [skip ci] --- .gitignore | 1 + .project | 17 ----------------- MANIFEST.in | 20 +++++++++++++++++--- relstorage/tests/.cvsignore | 1 - repltest/master/{notes => notes.sql} | 0 repltest/slave/{notes => notes.sql} | 0 6 files changed, 18 insertions(+), 21 deletions(-) delete mode 100644 .project delete mode 100644 relstorage/tests/.cvsignore rename repltest/master/{notes => notes.sql} (100%) rename repltest/slave/{notes => notes.sql} (100%) diff --git a/.gitignore b/.gitignore index 34df063..4020729 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ .installed.cfg .dir-locals.el .pydevproject +.project *.egg-info *.pyc *.sublime-* diff --git a/.project b/.project deleted file mode 100644 index 9a33366..0000000 --- a/.project +++ /dev/null @@ -1,17 +0,0 @@ - - - relstorage-git - - - - - - org.python.pydev.PyDevBuilder - - - - - - org.python.pydev.pythonNature - - diff --git a/MANIFEST.in b/MANIFEST.in index 5fd29c2..de95ff1 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,17 @@ -include MANIFEST.in *.txt *.rst *.py setup.cfg -recursive-include relstorage *.py *.xml *.txt -recursive-include doc *.py *.rst +include MANIFEST.in *.txt *.py setup.cfg +include .coveragerc +include buildout*.cfg +include tox.ini +include .pylintrc +include BUILDOUT.rst +include CHANGES.rst +recursive-include .travis * + +recursive-include notes *.ods *.py *.sql *.txt + +recursive-include relstorage *.py *.xml *.txt *.test *.conf + +recursive-include doc *.py *.rst Makefile +recursive-exclude doc changelog.rst relstorage.*.rst + +recursive-include repltest *.cfg *.conf *.in *.patch *.sql diff --git a/relstorage/tests/.cvsignore b/relstorage/tests/.cvsignore deleted file mode 100644 index 0d20b64..0000000 --- a/relstorage/tests/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.pyc diff --git a/repltest/master/notes b/repltest/master/notes.sql similarity index 100% rename from repltest/master/notes rename to repltest/master/notes.sql diff --git a/repltest/slave/notes b/repltest/slave/notes.sql similarity index 100% rename from repltest/slave/notes rename to repltest/slave/notes.sql