From 831a06a07d93626b33b094f75c63ae017c09974f Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 26 Nov 2017 22:29:41 +0100 Subject: [PATCH] move 3rd party docs/license file from package dir to docs/3rd_party setup.py excludes all .c .h .pyx files from installation, but such docs / license files would still be copied to the target directory if they are inside the python "borg" package dir. --- docs/3rd_party/README | 5 +++++ {src/borg/algorithms => docs/3rd_party}/blake2/COPYING | 0 {src/borg/algorithms => docs/3rd_party}/blake2/README.md | 0 3 files changed, 5 insertions(+) create mode 100644 docs/3rd_party/README rename {src/borg/algorithms => docs/3rd_party}/blake2/COPYING (100%) rename {src/borg/algorithms => docs/3rd_party}/blake2/README.md (100%) diff --git a/docs/3rd_party/README b/docs/3rd_party/README new file mode 100644 index 000000000..1f7b9b6ad --- /dev/null +++ b/docs/3rd_party/README @@ -0,0 +1,5 @@ +Here we store 3rd party documentation, licenses, etc. + +Please note that all files inside the "borg" package directory (except the +stuff excluded in setup.py) will be INSTALLED, so don't keep docs or licenses +there. diff --git a/src/borg/algorithms/blake2/COPYING b/docs/3rd_party/blake2/COPYING similarity index 100% rename from src/borg/algorithms/blake2/COPYING rename to docs/3rd_party/blake2/COPYING diff --git a/src/borg/algorithms/blake2/README.md b/docs/3rd_party/blake2/README.md similarity index 100% rename from src/borg/algorithms/blake2/README.md rename to docs/3rd_party/blake2/README.md