##// END OF EJS Templates
fixed manifest, and changed info site
marcink -
r1141:42e53ebb default
parent child Browse files
Show More
@@ -1,16 +1,22 b''
1 1 include rhodecode/config/deployment.ini_tmpl
2 2 include rhodecode/lib/dbmigrate/migrate.cfg
3 3
4 4 include README.rst
5 recursive-include rhodecode/i18n/ *
5 recursive-include rhodecode/i18n *
6
7 #docs
8 recursive-include docs *
9
10 #init.d
11 recursive-include init.d *
6 12
7 13 #images
8 14 recursive-include rhodecode/public/css *
9 15 recursive-include rhodecode/public/images *
10 16 #js
11 17 include rhodecode/public/js/yui2a.js
12 18 include rhodecode/public/js/excanvas.min.js
13 19 include rhodecode/public/js/yui.flot.js
14 20 include rhodecode/public/js/graph.js
15 21 #templates
16 22 recursive-include rhodecode/templates *
@@ -1,113 +1,113 b''
1 1 import sys
2 2 from rhodecode import get_version
3 3 from rhodecode import __platform__
4 4
5 5 py_version = sys.version_info
6 6
7 7 requirements = [
8 8 "Pylons==1.0.0",
9 9 "WebHelpers==1.2",
10 10 "SQLAlchemy==0.6.6",
11 11 "Mako==0.4.0",
12 12 "vcs==0.1.11",
13 13 "pygments==1.4.0",
14 14 "mercurial==1.7.5",
15 15 "whoosh==1.3.4",
16 16 "celery==2.2.4",
17 17 "babel",
18 18 ]
19 19
20 20 classifiers = ['Development Status :: 5 - Production/Stable',
21 21 'Environment :: Web Environment',
22 22 'Framework :: Pylons',
23 23 'Intended Audience :: Developers',
24 24 'License :: OSI Approved :: BSD License',
25 25 'Operating System :: OS Independent',
26 26 'Programming Language :: Python', ]
27 27
28 28 if py_version < (2, 6):
29 29 requirements.append("simplejson")
30 30 requirements.append("pysqlite")
31 31
32 32 if __platform__ in ('Linux', 'Darwin'):
33 33 requirements.append("py-bcrypt")
34 34
35 35
36 36 #additional files from project that goes somewhere in the filesystem
37 37 #relative to sys.prefix
38 38 data_files = []
39 39
40 40 #additional files that goes into package itself
41 41 package_data = {'rhodecode': ['i18n/*/LC_MESSAGES/*.mo', ], }
42 42
43 43 description = ('Mercurial repository browser/management with '
44 44 'build in push/pull server and full text search')
45 45 keywords = ' '.join (['rhodecode', 'rhodiumcode', 'mercurial', 'git',
46 46 'repository management', 'hgweb replacement'
47 47 'hgwebdir', 'gitweb replacement', 'serving hgweb',
48 48 ])
49 49 #long description
50 50 try:
51 51 readme_file = 'README.rst'
52 52 changelog_file = 'docs/changelog.rst'
53 53 long_description = open(readme_file).read() + '\n\n' + \
54 54 open(changelog_file).read()
55 55
56 56 except IOError, err:
57 57 sys.stderr.write("[WARNING] Cannot find file specified as "
58 58 "long_description (%s)\n or changelog (%s) skipping that file" \
59 59 % (readme_file, changelog_file))
60 60 long_description = description
61 61
62 62
63 63 try:
64 64 from setuptools import setup, find_packages
65 65 except ImportError:
66 66 from ez_setup import use_setuptools
67 67 use_setuptools()
68 68 from setuptools import setup, find_packages
69 69 #packages
70 70 packages = find_packages(exclude=['ez_setup'])
71 71
72 72 setup(
73 73 name='RhodeCode',
74 74 version=get_version(),
75 75 description=description,
76 76 long_description=long_description,
77 77 keywords=keywords,
78 78 license='BSD',
79 79 author='Marcin Kuzminski',
80 80 author_email='marcin@python-works.com',
81 url='http://hg.python-works.com',
81 url='http://rhodecode.org',
82 82 install_requires=requirements,
83 83 classifiers=classifiers,
84 84 setup_requires=["PasteScript>=1.6.3"],
85 85 data_files=data_files,
86 86 packages=packages,
87 87 include_package_data=True,
88 88 test_suite='nose.collector',
89 89 package_data=package_data,
90 90 message_extractors={'rhodecode': [
91 91 ('**.py', 'python', None),
92 92 ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}),
93 93 ('templates/**.html', 'mako', {'input_encoding': 'utf-8'}),
94 94 ('public/**', 'ignore', None)]},
95 95 zip_safe=False,
96 96 paster_plugins=['PasteScript', 'Pylons'],
97 97 entry_points="""
98 98 [paste.app_factory]
99 99 main = rhodecode.config.middleware:make_app
100 100
101 101 [paste.app_install]
102 102 main = pylons.util:PylonsInstaller
103 103
104 104 [paste.global_paster_command]
105 105 make-index = rhodecode.lib.indexers:MakeIndex
106 106 upgrade-db = rhodecode.lib.dbmigrate:UpgradeDb
107 107 celeryd=rhodecode.lib.celerypylons.commands:CeleryDaemonCommand
108 108 celerybeat=rhodecode.lib.celerypylons.commands:CeleryBeatCommand
109 109 camqadm=rhodecode.lib.celerypylons.commands:CAMQPAdminCommand
110 110 celeryev=rhodecode.lib.celerypylons.commands:CeleryEventCommand
111 111
112 112 """,
113 113 )
General Comments 0
You need to be logged in to leave comments. Login now