File tree 3 files changed +43
-3
lines changed
3 files changed +43
-3
lines changed Original file line number Diff line number Diff line change 1
- 0.1
2
- ------
1
+ CHANGELOG
2
+ ===========
3
+
4
+ 0.2 - (unreleased)
5
+ ----------------------
6
+ - proper release
7
+
8
+ 0.1 - (unreleased)
9
+ ----------------------
3
10
4
11
- make wstools as an egg
Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change 2
2
#
3
3
# $Id: setup.py,v 1.11 2005/02/15 16:32:22 warnes Exp $
4
4
5
+ import os ,re
5
6
from setuptools import setup , find_packages
6
7
7
8
__version__ = '0.1'
8
9
10
+
9
11
url = "http://pywebsvcs.sf.net/"
10
12
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
+
12
23
13
24
setup (
14
25
name = "wstools" ,
You can’t perform that action at this time.
0 commit comments