##// END OF EJS Templates
more renames for rhode code !!
more renames for rhode code !!

File last commit:

r549:f9907517 default
r549:f9907517 default
Show More
setup.py
49 lines | 1.5 KiB | text/x-python | PythonLexer
renamed project to rhodecode
r547 from rhodecode import get_version
Marcin Kuzminski
initial commit.
r0 try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
more renames for rhode code !!
r549 name='RhodeCode-%s' % get_version(),
added version generation to pylons_app and showed it into template. Propagated baseController with some data for acces into each controller. Fixed simplehg middleware to get proper name of application
r185 version=get_version(),
updated setup.py
r326 description='Mercurial repository serving and browsing app',
more renames for rhode code !!
r549 keywords='mercurial web hgwebdir replacement serving hgweb rhodecode',
updated setup.py
r326 license='BSD',
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 author='marcin kuzminski',
fixed setup and install instructions
r244 author_email='marcin@python-works.com',
Updated readme
r325 url='http://hg.python-works.com',
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 install_requires=[
"Pylons>=1.0.0",
"SQLAlchemy>=0.6",
Code cleanups, made js rollup file, some preparation for .egg creation
r457 "babel",
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 "Mako>=0.3.2",
updated whoosh deps,...
r529 "vcs>=0.1.7",
Fixed bug in repos, added dependencies and bumped version
r246 "pygments>=1.3.0",
updated requirements and readme
r344 "mercurial>=1.6",
Implemented search using whoosh. Still as experimental option.
r406 "pysqlite",
version bump
r538 "whoosh==1.0.0b20",
Changed password crypting scheme to bcrypt, added dependency for setup
r415 "py-bcrypt",
updated config files, and added celery dependency
r472 "celery",
Marcin Kuzminski
initial commit.
r0 ],
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 setup_requires=["PasteScript>=1.6.3"],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
test_suite='nose.collector',
renamed project to rhodecode
r547 package_data={'rhodecode': ['i18n/*/LC_MESSAGES/*.mo']},
message_extractors={'rhodecode': [
Marcin Kuzminski
initial commit.
r0 ('**.py', 'python', None),
('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}),
('public/**', 'ignore', None)]},
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 zip_safe=False,
paster_plugins=['PasteScript', 'Pylons'],
entry_points="""
Marcin Kuzminski
initial commit.
r0 [paste.app_factory]
renamed project to rhodecode
r547 main = rhodecode.config.middleware:make_app
Marcin Kuzminski
initial commit.
r0
[paste.app_install]
main = pylons.util:PylonsInstaller
""",
)