From 6ec5679c6d647243b3cefe15af23486c573544a3 Mon Sep 17 00:00:00 2001 From: "Todd M. Guerra" Date: Wed, 30 Sep 2015 16:11:06 -0400 Subject: [PATCH] setup: change to using include_package_data Instead of manually writing includes to various package data, we now just set include_package_data to True to make it more efficient. Reference: http://pythonhosted.org/setuptools/setuptools.html#new-and-changed-setup-keywords Fixes https://github.com/python-babel/babel/issues/260 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4b8db027..83cd6517 100755 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ setup( 'Topic :: Software Development :: Libraries :: Python Modules', ], packages=['babel', 'babel.messages', 'babel.localtime'], - package_data={'babel': ['global.dat', 'locale-data/*.dat']}, + include_package_data=True, install_requires=[ # This version identifier is currently necessary as # pytz otherwise does not install on pip 1.4 or -- 2.47.2