aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-03-05 19:37:20 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-03-05 19:37:20 -0500
commit4e0a8cd8f37e4f427a75cac454bea4aca0c4ea0c (patch)
tree7eeaa8439c12a74ff1c1dff6b1b59d0852064957 /setup.py
parent80df5396a629d49b826b7522f7a72c15b75b710a (diff)
downloadexternal_python_setuptools-4e0a8cd8f37e4f427a75cac454bea4aca0c4ea0c.tar.gz
external_python_setuptools-4e0a8cd8f37e4f427a75cac454bea4aca0c4ea0c.tar.bz2
external_python_setuptools-4e0a8cd8f37e4f427a75cac454bea4aca0c4ea0c.zip
Remove build_py (unused)
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/setup.py b/setup.py
index 5d98de06..234a7885 100755
--- a/setup.py
+++ b/setup.py
@@ -28,7 +28,6 @@ with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
import setuptools
-from setuptools.command.build_py import build_py as _build_py
scripts = []
@@ -49,20 +48,6 @@ def _gen_console_scripts():
console_scripts = list(_gen_console_scripts())
-
-# specific command that is used to generate windows .exe files
-class build_py(_build_py):
- def build_package_data(self):
- """Copy data files into build directory"""
- for package, src_dir, build_dir, filenames in self.data_files:
- for filename in filenames:
- target = os.path.join(build_dir, filename)
- self.mkpath(os.path.dirname(target))
- srcfile = os.path.join(src_dir, filename)
- outf, copied = self.copy_file(srcfile, target)
- srcfile = os.path.abspath(srcfile)
-
-
readme_file = io.open('README.txt', encoding='utf-8')
with readme_file: