forked from jzempel/fedex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 780 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
setup
~~~~~
Setup the fedex distribution.
:copyright: 2014 by Jonathan Zempel.
:license: BSD, see LICENSE for more details.
"""
from setuptools import setup
import fedex
setup(
name="fedex.py",
version=fedex.__version__,
url="http://github.com/jzempel/fedex",
license=fedex.__license__,
author=fedex.__author__,
author_email="jzempel@gmail.com",
description="FedEx API for Python.",
long_description=__doc__,
packages=["fedex"],
package_data={"fedex": ["wsdls/*.wsdl"]},
include_package_data=True,
install_requires=["suds==0.4.1"],
dependency_links=["https://github.com/nemith/suds/tarball/master#egg=suds-0.4.1"], # NOQA
test_suite="fedex.tests"
)