Show
Ignore:
Timestamp:
02/25/07 18:00:36 (21 months ago)
Author:
Tarek Ziad?? <tarek@…>
Message:

added pygments support

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pycommunity/setup.py

    r76 r77  
    1818# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. 
    1919# $Id: $ 
    20 """ PyCommunity 
     20"""Automatic website builder, using doctests and other reST files. 
    2121 
    2222PyCommunity builds an HTML tree out of Python packages, using reST files 
     
    2929Development Status :: 3 - Alpha 
    3030Intended Audience :: Developers 
    31 License :: OSI Approved :: GPL v2 
     31License :: OSI Approved :: GNU General Public License (GPL) 
    3232Programming Language :: Python 
    3333Topic :: Software Development 
     
    6060        etc_files.append(path) 
    6161     
     62url = "http://programmation-python.org/pycommunity" 
    6263 
    6364setup(name="PyCommunity", 
     
    6566      maintainer="Tarek Ziade", 
    6667      maintainer_email="tarek@ziade.org", 
    67       url = "http://programmation-python.org/pyc", 
     68      url = url, 
     69      download_url = '%s/PyCommunity-0.1a-py2.5.egg' % url, 
    6870      license = "http://www.gnu.org/copyleft/gpl.html", 
    6971      platforms = ["any"], 
     
    7375      scripts = ['pycy'], 
    7476      packages = ['pycommunity'], 
    75       install_requires = ['cheesecake', 'cheetah', 'epydoc'], 
     77      install_requires = ['cheesecake', 'cheetah', 'epydoc' , 'pygments'], 
    7678      data_files = [('/etc/pycommunity', etc_files)]) 
    7779