diff --git a/CHANGES.txt b/CHANGES.txt index 6a71ffa..739eae8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,11 @@ -0.1 ------- +CHANGELOG +=========== + +0.2 - (unreleased) +---------------------- + - proper release + +0.1 - (unreleased) +---------------------- - make wstools as an egg diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..c2c7b04 --- /dev/null +++ b/README.txt @@ -0,0 +1,22 @@ + +Credits +======== +Companies +--------- +|makinacom|_ + + * `Planet Makina Corpus `_ + * `Contact us `_ + +.. |makinacom| image:: http://depot.makina-corpus.org/public/logo.gif +.. _makinacom: http://www.makina-corpus.com + +Authors +------------ + +- Makina Corpus + +Contributors +----------------- + + diff --git a/setup.py b/setup.py index 38fb166..df34582 100644 --- a/setup.py +++ b/setup.py @@ -2,13 +2,24 @@ # # $Id: setup.py,v 1.11 2005/02/15 16:32:22 warnes Exp $ +import os,re from setuptools import setup, find_packages __version__ = '0.1' + url="http://pywebsvcs.sf.net/" -long_description="""WSDL parsing services package for Web Services for Python. see """ + url + +def read(*rnames): + return "\n"+ open( + os.path.join('.', *rnames) + ).read() + +long_description="""WSDL parsing services package for Web Services for Python. see """ + url \ + + read('README.txt')\ + + read('CHANGES.txt')\ + setup( name="wstools",