forked from pelletier/SOAPpy
-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
34 lines (30 loc) · 888 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
33
#!/usr/bin/env python
#
# $Id: setup.py,v 1.11 2005/02/15 16:32:22 warnes Exp $
CVS=0
from setuptools import setup, find_packages
import os
def read(*rnames):
return "\n"+ open(
os.path.join('.', *rnames)
).read()
url="https://github.com/kiorky/SOAPpy.git"
long_description="SOAPpy provides tools for building SOAP clients and servers. For more information see " + url\
+'\n'+read('README.rst')\
+'\n'+read('CHANGES.txt')
setup(
name="SOAPpy",
version='0.12.23.dev0',
description="SOAP Services for Python",
maintainer="Gregory Warnes, kiorky",
maintainer_email="Gregory.R.Warnes@Pfizer.com, kiorky@cryptelium.net",
url = url,
long_description=long_description,
packages=find_packages('src'),
package_dir = {'': 'src'},
include_package_data=True,
install_requires=[
'wstools',
'defusedxml',
]
)