-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 820 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 820 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
32
33
#!/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.3',
license='AGPL',
author='Openlabs Technologies & Consulting (P) LTD',
author_email='info@openlabs.co.in',
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=[
'lxml',
'unittest2',
]
)