forked from wangluyi1982/python-usps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (32 loc) · 1.14 KB
/
setup.py
File metadata and controls
executable file
·36 lines (32 loc) · 1.14 KB
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
35
36
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = '0.2.0'
LONG_DESC = """\
A python wrapper to the USPS api, currently only supports address validation
"""
setup(name='python-usps2',
version=VERSION,
description="A python wrapper to the USPS api, currently only supports address validation",
long_description=LONG_DESC,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Natural Language :: English',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='usps api shipping',
author='Derek Stegelman',
author_email='email@stegelman.com',
maintainer='Derek Stegelman',
maintainer_email='email@stegelman.com',
url='http://github.com/dstegelman/python-usps',
license='New BSD License',
packages=find_packages(),
zip_safe=False,
install_requires=[
],
)