comparison setup.py @ 1188:01f37a734fdf beta

update setup.py and frozen dateutils
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 29 Mar 2011 00:11:18 +0200
parents b3f48216e55e
children 6832ef664673
comparison
equal deleted inserted replaced
1187:08d77411c881 1188:01f37a734fdf
14 "Mako>=0.4.0", 14 "Mako>=0.4.0",
15 "vcs>=0.2.0", 15 "vcs>=0.2.0",
16 "pygments>=1.4", 16 "pygments>=1.4",
17 "mercurial>=1.8.1", 17 "mercurial>=1.8.1",
18 "whoosh>=1.8.0", 18 "whoosh>=1.8.0",
19 "celery>=2.2.4", 19 "celery>=2.2.5",
20 "babel", 20 "babel",
21 "python-dateutil<=2.0", 21 "python-dateutil>=1.5.0,<2.0.0",
22 ] 22 ]
23 23
24 classifiers = ['Development Status :: 4 - Beta', 24 classifiers = ['Development Status :: 4 - Beta',
25 'Environment :: Web Environment', 25 'Environment :: Web Environment',
26 'Framework :: Pylons', 26 'Framework :: Pylons',
27 'Intended Audience :: Developers', 27 'Intended Audience :: Developers',
28 'License :: OSI Approved :: BSD License', 28 'License :: OSI Approved :: BSD License',
29 'Operating System :: OS Independent', 29 'Operating System :: OS Independent',
30 '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', ]
31 34
32 if py_version < (2, 6): 35 if py_version < (2, 6):
33 requirements.append("simplejson") 36 requirements.append("simplejson")
34 requirements.append("pysqlite") 37 requirements.append("pysqlite")
35 38