forked from erny/SudsSigner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (39 loc) · 1.48 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Basic setup script. Still no dependecy information
# python-libxml2 / libxml2-python should be installed before
# because it does not install from PyPi.
# It's part of libxml2 and may be present as separate package
# e.g. python-libxml2 on Ubuntu, libxml2-python on RHEL/CentOS
# All other dependencies should work.
# Tested with virtualenv --distribute and python 2.7 on Ubuntu 12.04
# after copying libxml2 manually from system folder.
from setuptools import setup
import sudssigner
setup(
name='sudssigner',
version=sudssigner.__version__,
packages=['sudssigner'],
install_requires=[
'lxml', 'pyopenssl', 'suds-jurko>=0.6',
'pyxmlsec'],
author=u'András Veres-Szentkirályi',
author_email='[email protected]',
maintainer='Ernesto Revilla',
maintainer_email='[email protected]',
description='Sign digitally suds WS requests with X509v3 certificates',
license='MIT license',
url='https://github.com/dnet/SudsSigner',
plataforms=['Linux', 'Windows', 'OSX'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development :: SOAP WS Client',
],
)