Skip to content

Commit d9c5c7a

Browse files
committed
proper packaging, stage3
1 parent a7a06b6 commit d9c5c7a

File tree

3 files changed

+43
-3
lines changed

3 files changed

+43
-3
lines changed

CHANGES.txt

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
0.1
2-
------
1+
CHANGELOG
2+
===========
3+
4+
0.2 - (unreleased)
5+
----------------------
6+
- proper release
7+
8+
0.1 - (unreleased)
9+
----------------------
310

411
- make wstools as an egg

README.txt

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Credits
3+
========
4+
Companies
5+
---------
6+
|makinacom|_
7+
8+
* `Planet Makina Corpus <http://www.makina-corpus.org>`_
9+
* `Contact us <mailto:python@makina-corpus.org>`_
10+
11+
.. |makinacom| image:: http://depot.makina-corpus.org/public/logo.gif
12+
.. _makinacom: http://www.makina-corpus.com
13+
14+
Authors
15+
------------
16+
17+
- Makina Corpus <python@makina-corpus.com>
18+
19+
Contributors
20+
-----------------
21+
22+

setup.py

+12-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,24 @@
22
#
33
# $Id: setup.py,v 1.11 2005/02/15 16:32:22 warnes Exp $
44

5+
import os,re
56
from setuptools import setup, find_packages
67

78
__version__ = '0.1'
89

10+
911
url="http://pywebsvcs.sf.net/"
1012

11-
long_description="""WSDL parsing services package for Web Services for Python. see """ + url
13+
14+
def read(*rnames):
15+
return "\n"+ open(
16+
os.path.join('.', *rnames)
17+
).read()
18+
19+
long_description="""WSDL parsing services package for Web Services for Python. see """ + url \
20+
+ read('README.txt')\
21+
+ read('CHANGES.txt')\
22+
1223

1324
setup(
1425
name="wstools",

0 commit comments

Comments
 (0)