changeset 1078:2d7a94f3eaae beta

added docs to manifest, updated setup script
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 25 Feb 2011 00:20:44 +0100
parents ee3a5a5f66bf
children f4254d4cc5ca
files MANIFEST.in setup.py
diffstat 2 files changed, 12 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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 *
--- 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',