##// END OF EJS Templates
added docs to manifest, updated setup script
marcink -
r1078:2d7a94f3 beta
parent child Browse files
Show More
@@ -4,6 +4,9 b' include rhodecode/lib/dbmigrate/migrate.'
4 include README.rst
4 include README.rst
5 recursive-include rhodecode/i18n *
5 recursive-include rhodecode/i18n *
6
6
7 #docs
8 recursive-include docs *
9
7 #images
10 #images
8 recursive-include rhodecode/public/css *
11 recursive-include rhodecode/public/css *
9 recursive-include rhodecode/public/images *
12 recursive-include rhodecode/public/images *
@@ -1,14 +1,14 b''
1 import sys
1 import sys
2 from rhodecode import get_version
3
2 py_version = sys.version_info
4 py_version = sys.version_info
3
5
4 from rhodecode import get_version
5
6 requirements = [
6 requirements = [
7 "Pylons==1.0.0",
7 "Pylons==1.0.0",
8 "WebHelpers>=1.2",
8 "WebHelpers>=1.2",
9 "SQLAlchemy>=0.6.6",
9 "SQLAlchemy>=0.6.6",
10 "Mako==0.3.6",
10 "Mako==0.3.6",
11 "vcs>=0.1.10",
11 "vcs>=0.2.0",
12 "pygments>=1.4",
12 "pygments>=1.4",
13 "mercurial>=1.7.5",
13 "mercurial>=1.7.5",
14 "whoosh>=1.3.4",
14 "whoosh>=1.3.4",
@@ -25,7 +25,7 b" classifiers = ['Development Status :: 4 "
25 'Operating System :: OS Independent',
25 'Operating System :: OS Independent',
26 'Programming Language :: Python', ]
26 'Programming Language :: Python', ]
27
27
28 if sys.version_info < (2, 6):
28 if py_version < (2, 6):
29 requirements.append("simplejson")
29 requirements.append("simplejson")
30 requirements.append("pysqlite")
30 requirements.append("pysqlite")
31
31
@@ -38,6 +38,10 b" package_data = {'rhodecode': ['i18n/*/LC"
38
38
39 description = ('Mercurial repository browser/management with '
39 description = ('Mercurial repository browser/management with '
40 'build in push/pull server and full text search')
40 'build in push/pull server and full text search')
41 keywords = ' '.join (['rhodecode', 'rhodiumcode', 'mercurial', 'git',
42 'repository management', 'hgweb replacement'
43 'hgwebdir', 'gitweb replacement', 'serving hgweb',
44 ])
41 #long description
45 #long description
42 try:
46 try:
43 readme_file = 'README.rst'
47 readme_file = 'README.rst'
@@ -66,7 +70,7 b' setup('
66 version=get_version(),
70 version=get_version(),
67 description=description,
71 description=description,
68 long_description=long_description,
72 long_description=long_description,
69 keywords='rhodiumcode mercurial web hgwebdir gitweb git replacement serving hgweb rhodecode',
73 keywords=keywords,
70 license='BSD',
74 license='BSD',
71 author='Marcin Kuzminski',
75 author='Marcin Kuzminski',
72 author_email='marcin@python-works.com',
76 author_email='marcin@python-works.com',
General Comments 0
You need to be logged in to leave comments. Login now