Files
@ f57aaf673743
Branch filter:
Location: kallithea/setup.py - annotation
f57aaf673743
1.5 KiB
text/x-python
fixed initial commit missing parents div,
and some small fix to code stats divs
and some small fix to code stats divs
1e757ac98988 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 f99075170eb4 3380ca40cdba 674e0085ccc7 f99075170eb4 674e0085ccc7 20dc7a5eb748 782f0692b29c d8d471cfa093 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 644795a4e8d2 20dc7a5eb748 3a567e329fb6 ca80f8c00562 ab5d91709af9 b153a51b1d3b 16ba57d8fe23 04e8b31fb245 91292686c1ed 564e40829f80 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 1e757ac98988 1e757ac98988 564e40829f80 564e40829f80 564e40829f80 20dc7a5eb748 20dc7a5eb748 20dc7a5eb748 564e40829f80 1e757ac98988 564e40829f80 564e40829f80 564e40829f80 564e40829f80 564e40829f80 | from rhodecode import get_version
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='RhodeCode-%s' % get_version(),
version=get_version(),
description='Mercurial repository serving and browsing app',
keywords='mercurial web hgwebdir replacement serving hgweb rhodecode',
license='BSD',
author='marcin kuzminski',
author_email='marcin@python-works.com',
url='http://hg.python-works.com',
install_requires=[
"Pylons>=1.0.0",
"SQLAlchemy>=0.6",
"babel",
"Mako>=0.3.2",
"vcs>=0.1.7",
"pygments>=1.3.0",
"mercurial>=1.6",
"pysqlite",
"whoosh==1.0.0b20",
"py-bcrypt",
"celery",
],
setup_requires=["PasteScript>=1.6.3"],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
test_suite='nose.collector',
package_data={'rhodecode': ['i18n/*/LC_MESSAGES/*.mo']},
message_extractors={'rhodecode': [
('**.py', 'python', None),
('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}),
('public/**', 'ignore', None)]},
zip_safe=False,
paster_plugins=['PasteScript', 'Pylons'],
entry_points="""
[paste.app_factory]
main = rhodecode.config.middleware:make_app
[paste.app_install]
main = pylons.util:PylonsInstaller
""",
)
|