Changeset - cc635016933f
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 15 years ago 2010-12-18 18:10:45
marcin@python-works.com
fixed error in setup.py RST generation, speling fix for README
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
README.rst
Show inline comments
 
@@ -57,13 +57,13 @@ Features
 
  breaking the main repository.
 
- Full text search powered by Whoosh on source codes, and file names.
 
  Build in indexing daemons, with optional incremental index build
 
  (no external search servers required all in one application)
 
- Setup project descriptions and info inside built in db for easy, non 
 
  file-system operations
 
- Inteligent cache with invalidation after push or project change, provides high 
 
- Intelligent cache with invalidation after push or project change, provides high 
 
  performance and always up to date data.    
 
- Rss / atom feeds, gravatar support, download sources as zip/tar/gz
 
- Async tasks for speed and performance using celery_ (works without them too)  
 
- Backup scripts can do backup of whole app and send it over scp to desired 
 
  location 
 
- Based on pylons / sqlalchemy / sqlite / whoosh / vcs
setup.py
Show inline comments
 
@@ -38,13 +38,13 @@ package_data = {'rhodecode': ['i18n/*/LC
 
description = ('Mercurial repository browser/management with '
 
               'build in push/pull server and full text search')
 
#long description
 
try:
 
    readme_file = 'README.rst'
 
    changelog_file = 'docs/changelog.rst'
 
    long_description = open(readme_file).read() + '/n/n' + \
 
    long_description = open(readme_file).read() + '\n\n' + \
 
        open(changelog_file).read()
 

	
 
except IOError, err:
 
    sys.stderr.write("[WARNING] Cannot find file specified as "
 
        "long_description (%s)\n or changelog (%s) skipping that file" \
 
            % (readme_file, changelog_file))
0 comments (0 inline, 0 general)