Browse Source

add dependecies

main
Thomas Pelletier 14 years ago
parent
commit
283075349b
1 changed files with 14 additions and 9 deletions
  1. +14
    -9
      setup.py

+ 14
- 9
setup.py View File

@@ -17,13 +17,18 @@ if CVS:
__version__ += "_CVS_" + time.strftime('%Y_%m_%d')


setup(name="SOAPpy",
version=__version__,
description="SOAP Services for Python",
maintainer="Gregory Warnes",
maintainer_email="Gregory.R.Warnes@Pfizer.com",
url = url,
long_description=long_description,
packages=['SOAPpy','SOAPpy/wstools']
)
setup(
name="SOAPpy",
version=__version__,
description="SOAP Services for Python",
maintainer="Gregory Warnes",
maintainer_email="Gregory.R.Warnes@Pfizer.com",
url = url,
long_description=long_description,
packages=['SOAPpy','SOAPpy/wstools'],
install_requires=[
'fpconst',
'pyxml'
]
)


Loading…
Cancel
Save