comparison setup.py @ 326:674e0085ccc7

updated setup.py
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 01 Jul 2010 00:04:59 +0200
parents d8d471cfa093
children ab5d91709af9
comparison
equal deleted inserted replaced
325:d8d471cfa093 326:674e0085ccc7
7 from setuptools import setup, find_packages 7 from setuptools import setup, find_packages
8 8
9 setup( 9 setup(
10 name='pylons_app', 10 name='pylons_app',
11 version=get_version(), 11 version=get_version(),
12 description='', 12 description='Mercurial repository serving and browsing app',
13 keywords='mercurial web hgwebdir replacement serving hgweb',
14 license='BSD',
13 author='marcin kuzminski', 15 author='marcin kuzminski',
14 author_email='marcin@python-works.com', 16 author_email='marcin@python-works.com',
15 url='http://hg.python-works.com', 17 url='http://hg.python-works.com',
16 install_requires=[ 18 install_requires=[
17 "Pylons>=1.0.0", 19 "Pylons>=1.0.0",
18 "SQLAlchemy>=0.6", 20 "SQLAlchemy>=0.6",
19 "Mako>=0.3.2", 21 "Mako>=0.3.2",
20 "vcs>=0.1.2", 22 "vcs>=0.1.3",
21 "pygments>=1.3.0", 23 "pygments>=1.3.0",
22 "mercurial>=1.5", 24 "mercurial>=1.5",
23 "pysqlite" 25 "pysqlite"
24 ], 26 ],
25 setup_requires=["PasteScript>=1.6.3"], 27 setup_requires=["PasteScript>=1.6.3"],