##// END OF EJS Templates
fixes #140
marcink -
r1215:8a153dba default
parent child Browse files
Show More
@@ -3,6 +3,19 b''
3 3 Changelog
4 4 =========
5 5
6
7 1.1.7 (**2011-03-23**)
8 ======================
9
10 news
11 ----
12
13 fixes
14 -----
15
16 - fixed #140 freeze of python dateutil library, since new version is python2.x
17 incompatible
18
6 19 1.1.7 (**2011-03-23**)
7 20 ======================
8 21
@@ -1,6 +1,7 b''
1 1 import sys
2 2 from rhodecode import get_version
3 3 from rhodecode import __platform__
4 from rhodecode import __license__
4 5
5 6 py_version = sys.version_info
6 7
@@ -16,17 +17,20 b' requirements = ['
16 17 "pygments==1.4.0",
17 18 "mercurial==1.7.5",
18 19 "whoosh==1.3.4",
19 "celery==2.2.4",
20 "celery==2.2.5",
20 21 "babel",
22 "python-dateutil>=1.5.0,<2.0.0",
21 23 ]
22 24
23 25 classifiers = ['Development Status :: 5 - Production/Stable',
24 26 'Environment :: Web Environment',
25 27 'Framework :: Pylons',
26 28 'Intended Audience :: Developers',
27 'License :: OSI Approved :: BSD License',
28 29 'Operating System :: OS Independent',
29 'Programming Language :: Python', ]
30 'Programming Language :: Python',
31 'Programming Language :: Python :: 2.5',
32 'Programming Language :: Python :: 2.6',
33 'Programming Language :: Python :: 2.7', ]
30 34
31 35 if py_version < (2, 6):
32 36 requirements.append("simplejson")
@@ -45,10 +49,9 b" package_data = {'rhodecode': ['i18n/*/LC"
45 49
46 50 description = ('Mercurial repository browser/management with '
47 51 'build in push/pull server and full text search')
48 keywords = ' '.join (['rhodecode', 'rhodiumcode', 'mercurial', 'git',
52 keywords = ' '.join(['rhodecode', 'rhodiumcode', 'mercurial', 'git',
49 53 'repository management', 'hgweb replacement'
50 'hgwebdir', 'gitweb replacement', 'serving hgweb',
51 ])
54 'hgwebdir', 'gitweb replacement', 'serving hgweb', ])
52 55 #long description
53 56 try:
54 57 readme_file = 'README.rst'
@@ -78,7 +81,7 b' setup('
78 81 description=description,
79 82 long_description=long_description,
80 83 keywords=keywords,
81 license='GPLv3',
84 license=__license__,
82 85 author='Marcin Kuzminski',
83 86 author_email='marcin@python-works.com',
84 87 url='http://rhodecode.org',
@@ -108,9 +111,5 b' setup('
108 111 make-index = rhodecode.lib.indexers:MakeIndex
109 112 upgrade-db = rhodecode.lib.dbmigrate:UpgradeDb
110 113 celeryd=rhodecode.lib.celerypylons.commands:CeleryDaemonCommand
111 celerybeat=rhodecode.lib.celerypylons.commands:CeleryBeatCommand
112 camqadm=rhodecode.lib.celerypylons.commands:CAMQPAdminCommand
113 celeryev=rhodecode.lib.celerypylons.commands:CeleryEventCommand
114
115 114 """,
116 115 )
General Comments 0
You need to be logged in to leave comments. Login now