aboutsummaryrefslogtreecommitdiff
path: root/setuptools/tests/files.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/tests/files.py')
-rw-r--r--setuptools/tests/files.py39
1 files changed, 0 insertions, 39 deletions
diff --git a/setuptools/tests/files.py b/setuptools/tests/files.py
deleted file mode 100644
index f5f0e6b..0000000
--- a/setuptools/tests/files.py
+++ /dev/null
@@ -1,39 +0,0 @@
-import os
-
-
-from setuptools.extern.six import binary_type
-import pkg_resources.py31compat
-
-
-def build_files(file_defs, prefix=""):
- """
- Build a set of files/directories, as described by the file_defs dictionary.
-
- Each key/value pair in the dictionary is interpreted as a filename/contents
- pair. If the contents value is a dictionary, a directory is created, and the
- dictionary interpreted as the files within it, recursively.
-
- For example:
-
- {"README.txt": "A README file",
- "foo": {
- "__init__.py": "",
- "bar": {
- "__init__.py": "",
- },
- "baz.py": "# Some code",
- }
- }
- """
- for name, contents in file_defs.items():
- full_name = os.path.join(prefix, name)
- if isinstance(contents, dict):
- pkg_resources.py31compat.makedirs(full_name, exist_ok=True)
- build_files(contents, prefix=full_name)
- else:
- if isinstance(contents, binary_type):
- with open(full_name, 'wb') as f:
- f.write(contents)
- else:
- with open(full_name, 'w') as f:
- f.write(contents)