-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 956 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
28
29
30
from setuptools import setup, find_packages
import sys
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Environment :: Console
Environment :: Web Environment
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Topic :: Internet
Topic :: Internet :: WWW/HTTP
Topic :: Software Development :: Libraries
Topic :: Software Development :: Object Brokering""".split("\n")
setup(
name='osa',
version='0.1.6.6',
description='Python fast/slim/convenient SOAP/WSDL client.',
author="Sergey A. Bozhenkov",
author_email='[email protected]',
url="https://bitbucket.org/sboz/osa",
download_url="https://bitbucket.org/sboz/osa/get/v0.1.6-p6.tar.gz",
packages=["osa",],
license="LGPLv3",
classifiers=CLASSIFIERS,
)