forked from soapteam/soapfish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (51 loc) · 1.89 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
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Soapbox is a SOAP library for Python capable of generating Python modules from
WSDL documents and providing a dispatcher for the Django framework.
'''
from setuptools import setup, find_packages
import soapbox
def get_requires(filename):
return [r.strip() for r in open(filename).readlines() if r[:3] != '-r ' and r.strip()]
setup(
name='soapbox-bsd',
version=soapbox.__version__,
author=soapbox.__author__,
author_email=soapbox.__email__,
url='https://github.com/FelixSchwarz/soapbox-bsd',
description='A SOAP library for Python',
long_description=open('README.md').read() + open('CHANGES').read() + open('TODO').read(),
download_url='',
license='New BSD License',
packages=find_packages(exclude=("examples", "tests",)),
include_package_data=True,
install_requires=get_requires('requirements.txt'),
tests_require=get_requires('dev_requirements.txt'),
test_suite='nose.collector',
entry_points={
'console_scripts': [
'py2wsdl=soapbox.py2wsdl:main',
'py2xsd=soapbox.py2xsd:main',
'wsdl2py=soapbox.wsdl2py:main',
'xsd2py=soapbox.xsd2py:main',
],
},
platforms=['OS Independent'],
keywords=['SOAP', 'WSDL', 'web service'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)