root/plone4biotheme.base/trunk/setup.py

Revision 185, 1.3 KB (checked in by mauro, 20 months ago)

prepare 1.1.0rc1

Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.1.0rc1'
5
6setup(name='plone4biotheme.base',
7      version=version,
8      description="An installable theme for Plone 4.0",
9      long_description=open("README.txt").read() + "\n" +
10                       open(os.path.join("docs", "HISTORY.txt")).read(),
11      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
12      classifiers=[
13        "Framework :: Plone",
14        "Programming Language :: Python",
15        "Topic :: Software Development :: Libraries :: Python Modules",
16        ],
17      keywords='web zope plone theme bio',
18      author='Biodec S.r.l.',
19      author_email='info@biodec.com',
20      url='http://www.plone4bio.org/',
21      license='GPL',
22      packages=find_packages(exclude=['ez_setup']),
23      namespace_packages=['plone4biotheme'],
24      include_package_data=True,
25      zip_safe=False,
26      install_requires=[
27          'setuptools',
28          # -*- Extra requirements: -*-
29      ],
30      entry_points="""
31      # -*- Entry points: -*-
32
33      [distutils.setup_keywords]
34      paster_plugins = setuptools.dist:assert_string_list
35
36      [egg_info.writers]
37      paster_plugins.txt = setuptools.command.egg_info:write_arg
38      """,
39      paster_plugins = ["ZopeSkel"],
40      )
Note: See TracBrowser for help on using the browser.