Skip to content

Commit f755ec0

Browse files
author
Greg Taylor
committed
Fixing up setup.py in preparation for distribution.
1 parent 6080531 commit f755ec0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
along with this program. If not, see <http://www.gnu.org/licenses/>.
1818
"""
1919
from distutils.core import setup
20-
from . import fedex
20+
import fedex
2121

2222
LONG_DESCRIPTION = \
2323
"""A light wrapper around Fedex's Web Services SOAP API using suds."""
@@ -42,7 +42,9 @@
4242
author_email='gtaylor@l11solutions.com',
4343
url='http://code.google.com/p/python-fedex/',
4444
download_url='http://pypi.python.org/pypi/fedex/',
45-
packages=['fedex'],
45+
packages=['fedex', 'fedex.services'],
46+
package_dir={'fedex': 'fedex'},
47+
package_data={'fedex': ['wsdl/*.wsdl', 'wsdl/test_server_wsdl/*.wsdl']},
4648
platforms = ['Platform Independent'],
4749
license = 'GPLv3',
4850
classifiers = CLASSIFIERS,

0 commit comments

Comments
 (0)