##// END OF EJS Templates
fixed hooks broken symlink issue...
fixed hooks broken symlink issue fixed python2.5 crash. fixed #58 missing graph.js bug Fixed tests to remove the forked repository when building enviroment version bump

File last commit:

r679:d85b0948 rhodecode-0.0.1.0.2 default
r679:d85b0948 rhodecode-0.0.1.0.2 default
Show More
setup.py
88 lines | 2.6 KiB | text/x-python | PythonLexer
renamed project to rhodecode
r547 from rhodecode import get_version
small fixes for distutils
r553 import sys
refactor codes and setup for python 2.5...
r564 py_version = sys.version_info
removed egg info, update files for distutils build...
r552
requirements = [
"Pylons>=1.0.0",
fixed hooks broken symlink issue...
r679 "SQLAlchemy==0.6.5",
removed egg info, update files for distutils build...
r552 "Mako>=0.3.2",
vcs version freeze
r622 "vcs==0.1.8",
removed egg info, update files for distutils build...
r552 "pygments>=1.3.0",
Version bump,freeze of dependent libs....
r639 "mercurial==1.6.4",
"whoosh==1.2.5",
fixed hooks broken symlink issue...
r679 "celery==2.1.3",
removed egg info, update files for distutils build...
r552 "py-bcrypt",
small fix for setup
r565 "babel",
removed egg info, update files for distutils build...
r552 ]
Version bump,freeze of dependent libs....
r639 classifiers = ["Development Status :: 5 - Production/Stable",
more docs update
r572 'Environment :: Web Environment',
'Framework :: Pylons',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python', ]
refactor codes and setup for python 2.5...
r564 if sys.version_info < (2, 6):
requirements.append("simplejson")
requirements.append("pysqlite")
small fixes for distutils
r553 #additional files from project that goes somewhere in the filesystem
#relative to sys.prefix
data_files = []
#additional files that goes into package itself
package_data = {'rhodecode': ['i18n/*/LC_MESSAGES/*.mo', ], }
removed egg info, update files for distutils build...
r552
small fix for setup
r565 description = 'Mercurial repository serving and browsing app'
small fixes for distutils
r553 #long description
try:
readme_file = 'README.rst'
long_description = open(readme_file).read()
except IOError, err:
Fixed i18n installation
r589 sys.stderr.write("[WARNING] Cannot find file specified as "
"long_description (%s)\n skipping that file" % readme_file)
small fix for setup
r565 long_description = description
removed egg info, update files for distutils build...
r552
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
small fixes for distutils
r553 #packages
packages = find_packages(exclude=['ez_setup'])
Marcin Kuzminski
initial commit.
r0
setup(
removed egg info, update files for distutils build...
r552 name='RhodeCode',
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(),
small fix for setup
r565 description=description,
removed egg info, update files for distutils build...
r552 long_description=long_description,
more docs update
r572 keywords='rhodiumcode mercurial web hgwebdir replacement serving hgweb rhodecode',
updated setup.py
r326 license='BSD',
removed egg info, update files for distutils build...
r552 author='Marcin Kuzminski',
fixed setup and install instructions
r244 author_email='marcin@python-works.com',
Updated readme
r325 url='http://hg.python-works.com',
removed egg info, update files for distutils build...
r552 install_requires=requirements,
more docs update
r572 classifiers=classifiers,
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 setup_requires=["PasteScript>=1.6.3"],
removed egg info, update files for distutils build...
r552 data_files=data_files,
small fixes for distutils
r553 packages=packages,
Html changes and cleanups, made folders for html templates, implemented tags and branches pages
r127 include_package_data=True,
test_suite='nose.collector',
small fixes for distutils
r553 package_data=package_data,
renamed project to rhodecode
r547 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
""",
)