Skip to content
This repository has been archived by the owner on May 2, 2020. It is now read-only.

Commit

Permalink
proper packaging, stage3
Browse files Browse the repository at this point in the history
  • Loading branch information
kiorky committed Feb 21, 2011
1 parent a7a06b6 commit d9c5c7a
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 3 deletions.
11 changes: 9 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
0.1
------
CHANGELOG
===========

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

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

- make wstools as an egg
22 changes: 22 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -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
-----------------


13 changes: 12 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit d9c5c7a

Please sign in to comment.