# HG changeset patch # User Marcin Kuzminski # Date 1298589644 -3600 # Node ID 2d7a94f3eaaed56d058a3102186b65f7461631e0 # Parent ee3a5a5f66bf7be3eb51684b22df3faf875a5e5e added docs to manifest, updated setup script diff -r ee3a5a5f66bf -r 2d7a94f3eaae MANIFEST.in --- a/MANIFEST.in Fri Feb 25 00:10:06 2011 +0100 +++ b/MANIFEST.in Fri Feb 25 00:20:44 2011 +0100 @@ -4,6 +4,9 @@ include README.rst recursive-include rhodecode/i18n * +#docs +recursive-include docs * + #images recursive-include rhodecode/public/css * recursive-include rhodecode/public/images * diff -r ee3a5a5f66bf -r 2d7a94f3eaae setup.py --- a/setup.py Fri Feb 25 00:10:06 2011 +0100 +++ b/setup.py Fri Feb 25 00:20:44 2011 +0100 @@ -1,14 +1,14 @@ import sys +from rhodecode import get_version + py_version = sys.version_info -from rhodecode import get_version - requirements = [ "Pylons==1.0.0", "WebHelpers>=1.2", "SQLAlchemy>=0.6.6", "Mako==0.3.6", - "vcs>=0.1.10", + "vcs>=0.2.0", "pygments>=1.4", "mercurial>=1.7.5", "whoosh>=1.3.4", @@ -25,7 +25,7 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', ] -if sys.version_info < (2, 6): +if py_version < (2, 6): requirements.append("simplejson") requirements.append("pysqlite") @@ -38,6 +38,10 @@ description = ('Mercurial repository browser/management with ' 'build in push/pull server and full text search') +keywords = ' '.join (['rhodecode', 'rhodiumcode', 'mercurial', 'git', + 'repository management', 'hgweb replacement' + 'hgwebdir', 'gitweb replacement', 'serving hgweb', + ]) #long description try: readme_file = 'README.rst' @@ -66,7 +70,7 @@ version=get_version(), description=description, long_description=long_description, - keywords='rhodiumcode mercurial web hgwebdir gitweb git replacement serving hgweb rhodecode', + keywords=keywords, license='BSD', author='Marcin Kuzminski', author_email='marcin@python-works.com',