##// END OF EJS Templates
Reimplemented way of caching repos list, hg model now get's repos objects right from cached dict, this way we skipp creating instances of MercurialRepository and gain performance. Some import cleanup
Reimplemented way of caching repos list, hg model now get's repos objects right from cached dict, this way we skipp creating instances of MercurialRepository and gain performance. Some import cleanup

File last commit:

r244:782f0692 default
r245:a83a1799 default
Show More
setup.py
41 lines | 1.2 KiB | text/x-python | PythonLexer
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 from pylons_app 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(
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 name='pylons_app',
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(),
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 description='',
author='marcin kuzminski',
fixed setup and install instructions
r244 author_email='marcin@python-works.com',
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 url='',
install_requires=[
"Pylons>=1.0.0",
"SQLAlchemy>=0.6",
"Mako>=0.3.2",
fixed setup and install instructions
r244 "vcs>=0.1.2",
updated setup dependencies
r170 "pygments>=1.3.0"
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',
package_data={'pylons_app': ['i18n/*/LC_MESSAGES/*.mo']},
message_extractors={'pylons_app': [
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]
main = pylons_app.config.middleware:make_app
[paste.app_install]
main = pylons.util:PylonsInstaller
""",
)