diff options
author | PJ Eby <distutils-sig@python.org> | 2005-11-18 04:37:31 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-11-18 04:37:31 +0000 |
commit | 4cd66c4147bef3ee8096f7161d407fb37582f1c9 (patch) | |
tree | fa4e932d263aa02a1c9d80cc2cb80f33d5ce6f47 /setup.py | |
parent | f3694a0388e4e15d9cbdd84e4c8ca7817c87a52c (diff) | |
download | external_python_setuptools-4cd66c4147bef3ee8096f7161d407fb37582f1c9.tar.gz external_python_setuptools-4cd66c4147bef3ee8096f7161d407fb37582f1c9.tar.bz2 external_python_setuptools-4cd66c4147bef3ee8096f7161d407fb37582f1c9.zip |
Added the ``include_package_data`` keyword to ``setup()``, allowing you to
automatically include any package data listed in revision control or
``MANIFEST.in``. Now projects can manage their data files and source
manifests without having to maintain two ways to express the same file
list. Yay!
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041473
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -36,7 +36,7 @@ setup( url = "http://peak.telecommunity.com/DevCenter/setuptools", test_suite = 'setuptools.tests.test_suite', packages = find_packages(), - package_data = {'setuptools': ['*.exe']}, + include_package_data = True, py_modules = ['pkg_resources', 'easy_install', 'site'], zip_safe = False, # We want 'python -m easy_install' to work, for now :( @@ -53,6 +53,7 @@ setup( "entry_points = setuptools.dist:check_entry_points", "test_suite = setuptools.dist:check_test_suite", "zip_safe = setuptools.dist:assert_bool", + "include_package_data = setuptools.dist:assert_bool", ], "egg_info.writers": [ "PKG-INFO = setuptools.command.egg_info:write_pkg_info", @@ -66,7 +67,6 @@ setup( "console_scripts": ["easy_install = setuptools.command.easy_install:main"], }, - classifiers = [f.strip() for f in """ Development Status :: 3 - Alpha Intended Audience :: Developers |