summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-12-24 16:51:28 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-12-24 16:51:28 -0500
commit79a0c55d8c09d3fdd68157faa8658ecd85aa5d45 (patch)
tree9cb908f37a3572f5823ac38ca942bb00c91342cb
parent9b13614de9c0728a3951f3be2e98b5d09e4314f2 (diff)
downloadpython-setuptools-git-79a0c55d8c09d3fdd68157faa8658ecd85aa5d45.tar.gz
Moved pkg_resources into its own package.
-rw-r--r--MANIFEST.in1
-rw-r--r--pkg_resources/__init__.py (renamed from pkg_resources.py)0
-rwxr-xr-xsetup.py2
3 files changed, 2 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 2c587d40..8916394a 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -4,6 +4,7 @@ recursive-include setuptools/tests *.html entries*
recursive-include setuptools/tests/svn_data *.zip
recursive-include docs *.py *.txt *.conf *.css *.css_t Makefile indexsidebar.html
recursive-include _markerlib *.py
+recursive-include pkg_resources *.py
include *.py
include *.txt
include MANIFEST.in
diff --git a/pkg_resources.py b/pkg_resources/__init__.py
index 3a8edca5..3a8edca5 100644
--- a/pkg_resources.py
+++ b/pkg_resources/__init__.py
diff --git a/setup.py b/setup.py
index bac4e29d..ff519e3e 100755
--- a/setup.py
+++ b/setup.py
@@ -128,7 +128,7 @@ setup_params = dict(
packages=setuptools.find_packages(),
package_data=package_data,
- py_modules=['pkg_resources', 'easy_install'],
+ py_modules=['easy_install'],
zip_safe=True,