forked from poundifdef/ClassicUPS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 875 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 875 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
from distutils.core import setup
setup(
name='ClassicUPS',
version='0.1.5',
author='Jay Goel',
author_email='jay@classicspecs.com',
url='http://github.com/classicspecs/ClassicUPS/',
packages=['ClassicUPS'],
description='Usable UPS Integration in Python',
long_description=open('README.rst').read(),
keywords=['UPS'],
install_requires=[
'dict2xml == 1.0',
'xmltodict == 0.4.2',
'requests == 0.14.2'
],
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Development Status :: 4 - Beta'
]
)
# To update pypi: `python setup.py register sdist bdist_wininst upload`