forked from gsson/soaplib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (41 loc) · 1.52 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
38
39
40
41
42
43
44
45
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = '0.8.1'
LONG_DESC = """\
This is a simple, easily extendible soap library that provides several useful
tools for creating and publishing soap web services in python. This package
features on-demand wsdl generation for the published services, a
wsgi-compliant web application, support for complex class structures, binary
attachments, simple framework for creating additional serialization mechanisms
and a client library.
This prokect now uses lxml as it's XML API, providing full namespace support.
"""
setup(name='soaplib',
version=VERSION,
description="A simple library for writing soap web services",
long_description=LONG_DESC,
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Natural Language :: English',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='soap',
author='Aaron Bickell',
author_email='abickell@optio.com',
maintainer = 'Jamie Kirkpatrick',
maintainer_email = 'jkp@kirkconsulting.co.uk',
url='http://wiki.github.com/jkp/soaplib-lxml',
license='LGPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
zip_safe=False,
install_requires=[
'pytz',
'lxml>=2.2.1',
],
test_suite='tests.test_suite',
entry_points="""
""",
)