We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6080531 commit f755ec0Copy full SHA for f755ec0
setup.py
@@ -17,7 +17,7 @@
17
along with this program. If not, see <http://www.gnu.org/licenses/>.
18
"""
19
from distutils.core import setup
20
-from . import fedex
+import fedex
21
22
LONG_DESCRIPTION = \
23
"""A light wrapper around Fedex's Web Services SOAP API using suds."""
@@ -42,7 +42,9 @@
42
author_email='gtaylor@l11solutions.com',
43
url='http://code.google.com/p/python-fedex/',
44
download_url='http://pypi.python.org/pypi/fedex/',
45
- packages=['fedex'],
+ packages=['fedex', 'fedex.services'],
46
+ package_dir={'fedex': 'fedex'},
47
+ package_data={'fedex': ['wsdl/*.wsdl', 'wsdl/test_server_wsdl/*.wsdl']},
48
platforms = ['Platform Independent'],
49
license = 'GPLv3',
50
classifiers = CLASSIFIERS,
0 commit comments