forked from suvit/suds-passworddigest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 848 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
31
32
# -*- coding: utf-8 -
#
# This file is part of suds-passworddigest released under the MIT license.
# See the NOTICE for more information.
import os
import sys
from setuptools import setup, find_packages
from suds_passworddigest import VERSION
setup(
name='suds_passworddigest',
version=VERSION,
description='adds Web Services Security'
' PasswordDigest authentication to SUDS',
long_description=file(
os.path.join(
os.path.dirname(__file__),
'README.md'
)
).read(),
author='Victor Safronovich',
author_email='[email protected]',
license='MIT',
url='http://github.com/suvit/suds-passworddigest',
zip_safe=False,
packages=find_packages(exclude=['docs', 'examples', 'tests']),
install_requires=['suds'],
include_package_data=True,
)