-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·34 lines (31 loc) · 1.11 KB
/
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
from setuptools import setup, find_packages
VERSION = '0.0.1'
LONG_DESC = """\
A python wrapper to the UPS api, currently only supports the address validation api
"""
setup(name='python-usps',
version=VERSION,
description="A python wrapper to the UPS api, currently only supports the address validation api",
long_description=LONG_DESC,
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Natural Language :: English',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='ups api shipping',
author='Jason Kraus',
author_email='[email protected]',
maintainer = 'Jason Kraus',
maintainer_email = '[email protected]',
url='http://github.com/cuker/python-ups',
license='New BSD License',
packages=find_packages(exclude=['ez_setup', 'ups', 'tests']),
zip_safe=False,
install_requires=[
],
test_suite='tests.testrunner.runtests',
)