Changeset - 36d54d4479db
[Not reviewed]
default
0 3 0
Marcin Kuzminski - 15 years ago 2010-10-11 19:10:19
marcin@python-works.com
Fixed i18n installation
3 files changed with 6 insertions and 11 deletions:
0 comments (0 inline, 0 general)
MANIFEST.in
Show inline comments
 
include rhodecode/config/deployment.ini_tmpl
 

	
 
include README.rst
 
recursive-include rhodecode/i18n/ *
 

	
 
#images
 
recursive-include rhodecode/public/css *
 
recursive-include rhodecode/public/images *
setup.cfg
Show inline comments
 
[egg_info]
 
tag_build = rc2
 
tag_build = rc3
 
tag_svn_revision = true
 

	
 
[easy_install]
 
@@ -32,11 +32,3 @@ domain = rhodecode
 
input_file = rhodecode/i18n/rhodecode.pot
 
output_dir = rhodecode/i18n
 
previous = true
 

	
 
[build_sphinx]
 
source-dir = docs/
 
build-dir  = docs/_build
 
all_files  = 1
 

	
 
[upload_sphinx]
 
upload-dir = docs/_build/html
setup.py
Show inline comments
 
@@ -40,8 +40,8 @@ try:
 
    readme_file = 'README.rst'
 
    long_description = open(readme_file).read()
 
except IOError, err:
 
    sys.stderr.write("[ERROR] Cannot find file specified as "
 
        "long_description (%s)\n" % readme_file)
 
    sys.stderr.write("[WARNING] Cannot find file specified as "
 
        "long_description (%s)\n skipping that file" % readme_file)
 
    long_description = description
 

	
 

	
0 comments (0 inline, 0 general)