forked from openlabs/PyUPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 842 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
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Pythonic API to UPS® Shipping Services
:copyright: (c) 2010-2013 by Openlabs Technologies & Consulting (P) LTD
:copyright: (c) 2010 by Sharoon Thomas.
:license: AGPL, see LICENSE for more details
'''
from setuptools import setup
setup(
name='PyUPS',
version='0.6.1',
license='AGPL',
author='Openlabs Technologies & Consulting (P) LTD',
author_email='[email protected]',
url='http://openlabs.co.in',
description="Python client to UPS® Shipping Webservice API",
long_description=__doc__,
keywords="UPS®, Shipping, United Parcel Service of America®",
test_suite='ups.tests.suite',
packages=[
'ups',
'ups.tests',
],
install_requires=[
'distribute',
'lxml',
'unittest2',
]
)