1.1 --- a/CHANGES.txt Sun Dec 14 21:16:08 2008 +1000
1.2 +++ b/CHANGES.txt Sun Dec 14 22:38:12 2008 +1000
1.3 @@ -2,6 +2,11 @@
1.4 CHANGES
1.5 =======
1.6
1.7 +0.2.1 (unreleased)
1.8 +------------------
1.9 +
1.10 +- changed homepage url
1.11 +
1.12 0.2.0 (2008-12-03)
1.13 ------------------
1.14
2.1 --- a/README.txt Sun Dec 14 21:16:08 2008 +1000
2.2 +++ b/README.txt Sun Dec 14 22:38:12 2008 +1000
2.3 @@ -6,3 +6,4 @@
2.4 collects commonly used code and interfaces of both.
2.5
2.6 See `rsl <http://cheeseshop.python.org/pypi/rsl>`_ for more details.
2.7 +
3.1 --- a/setup.py Sun Dec 14 21:16:08 2008 +1000
3.2 +++ b/setup.py Sun Dec 14 22:38:12 2008 +1000
3.3 @@ -34,14 +34,14 @@
3.4 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
3.5
3.6 setup(name = 'rsl.wsdl',
3.7 - version = '0.2.0',
3.8 + version = '0.2.1',
3.9 package_dir={'': 'src'},
3.10 packages = find_packages('src', exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
3.11
3.12 namespace_packages = ['rsl'],
3.13
3.14 # dependencies:
3.15 - install_requires = ['rsl >= 0.2.0',
3.16 + install_requires = ['rsl >= 0.2.1',
3.17 'zope.interface',
3.18 'setuptools',
3.19 'lxml >= 2.0'],
3.20 @@ -50,9 +50,9 @@
3.21 author='Gerhard Weis',
3.22 author_email='gerhard.weis@proclos.com',
3.23 description='Remote Service Library wsdl module',
3.24 - license = 'BSD-like',
3.25 + license = 'BSD',
3.26 #keywords = '',
3.27 - url='http://sourceforge.net/projects/rslib/',
3.28 + url='http://rslib.sourceforge.net',
3.29
3.30 long_description=read('README.txt') +
3.31 read('CHANGES.txt'),