-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
37 lines (35 loc) · 1.17 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
35
36
37
import codecs
import os
import re
from setuptools import setup
setup(
name='usps-api',
version='0.5',
author='Tobin Brown',
author_email='tobin@brobin.me',
packages=['usps'],
include_package_data=True,
url='http://github.com/brobin/usps-api',
license='MIT',
description='Python wrapper for the USPS API',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
],
keywords='usps shipping',
long_description=open('README.rst', 'r').read(),
install_requires=['requests', 'lxml', 'xmltodict'],
tests_require=['coverage', 'mock'],
zip_safe=False,
)