Browse Source

proper packaging, stage3

main
kiorky 14 years ago
parent
commit
d9c5c7a181
3 changed files with 43 additions and 3 deletions
  1. +9
    -2
      CHANGES.txt
  2. +22
    -0
      README.txt
  3. +12
    -1
      setup.py

+ 9
- 2
CHANGES.txt View File

@@ -1,4 +1,11 @@
0.1
------
CHANGELOG
===========

0.2 - (unreleased)
----------------------
- proper release

0.1 - (unreleased)
----------------------

- make wstools as an egg

+ 22
- 0
README.txt View File

@@ -0,0 +1,22 @@

Credits
========
Companies
---------
|makinacom|_

* `Planet Makina Corpus <http://www.makina-corpus.org>`_
* `Contact us <mailto:python@makina-corpus.org>`_

.. |makinacom| image:: http://depot.makina-corpus.org/public/logo.gif
.. _makinacom: http://www.makina-corpus.com

Authors
------------

- Makina Corpus <python@makina-corpus.com>

Contributors
-----------------



+ 12
- 1
setup.py View File

@@ -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",


Loading…
Cancel
Save