* changed home page url default tip
authorGerhard Weis <gweis@gmx.at>
Sun, 14 Dec 2008 22:28:53 +1000
changeset 21dd140e7964f5
parent 20 191b36752ce4
* changed home page url
CHANGES.txt
README.txt
setup.py
     1.1 --- a/CHANGES.txt	Sun Dec 14 21:16:07 2008 +1000
     1.2 +++ b/CHANGES.txt	Sun Dec 14 22:28:53 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:07 2008 +1000
     2.2 +++ b/README.txt	Sun Dec 14 22:28:53 2008 +1000
     2.3 @@ -4,4 +4,5 @@
     2.4  
     2.5  This module provides an implementation for REST style web services.
     2.6  
     2.7 -See `rsl <http://cheeseshop.python.org/pypi/rsl>`_ for more details.
     2.8 \ No newline at end of file
     2.9 +See `rsl <http://cheeseshop.python.org/pypi/rsl>`_ for more details.
    2.10 +
     3.1 --- a/setup.py	Sun Dec 14 21:16:07 2008 +1000
     3.2 +++ b/setup.py	Sun Dec 14 22:28:53 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.rest',
     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        
    3.20 @@ -49,9 +49,9 @@
    3.21        author='Gerhard Weis',
    3.22        author_email='gerhard.weis@proclos.com',
    3.23        description='Remote Service Library REST 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'),