forked from jzempel/stamps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 795 Bytes
/
setup.py
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 stamps distribution.
:copyright: 2014 by Jonathan Zempel.
:license: BSD, see LICENSE for more details.
"""
from setuptools import setup
import stamps
setup(
name="stamps.py",
version=stamps.__version__,
url="http://github.com/jzempel/stamps",
license=stamps.__license__,
author=stamps.__author__,
author_email="[email protected]",
description="Stamps.com API for Python.",
long_description=__doc__,
packages=["stamps"],
package_data={"stamps": ["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="stamps.tests"
)