-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
27 lines (25 loc) · 841 Bytes
/
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
from distutils.core import setup
setup(
name='ClassicUPS',
version='0.1.8',
author='Jay Goel',
author_email='[email protected]',
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'
],
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`