root / setup.py

Revision 18:54072185de50, 1.1 kB (checked in by Richard Davies <richard.davies@…>, 7 weeks ago)

Move setup.py to v0.11

Line 
1from setuptools import setup
2
3setup(name='GHRML',
4      version='0.11',
5      description='GHRML - Haml for Genshi',
6      author='Armin Ronacher',
7      author_email='armin.ronacher@active-4.com',
8      maintainer='Richard Davies',
9      maintainer_email='richard.davies@elastichosts.com',
10      license = 'BSD',
11      url='http://www.ghrml.org/',
12      download_url='http://www.ghrml.org/download/',
13      classifiers = [
14        'Development Status :: 3 - Alpha',
15        'Environment :: Web Environment',
16        'Intended Audience :: Developers',
17        'License :: OSI Approved :: BSD License',
18        'Operating System :: OS Independent',
19        'Programming Language :: Python',
20        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
21        'Topic :: Software Development :: Libraries :: Python Modules',
22        'Topic :: Text Processing :: Markup :: HTML',
23        'Topic :: Text Processing :: Markup :: XML'
24      ],
25      keywords = ['python.templating.engines'],                                                                               
26      packages=['ghrml'],
27      install_requires = ['Genshi>=0.4.4'],
28     )
Note: See TracBrowser for help on using the browser.