diff --git a/MANIFEST.in b/MANIFEST.in --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,8 @@ include rhodecode/config/deployment.ini_tmpl +include README.rst +recursive-include rhodecode/i18n/ * + #images recursive-include rhodecode/public/css * recursive-include rhodecode/public/images * diff --git a/setup.cfg b/setup.cfg --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [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 diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -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