source: main/kwarapoly.theme/trunk/setup.py @ 11511

Last change on this file since 11511 was 10866, checked in by Henrik Bettermann, 11 years ago

Fill trunk

  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1from setuptools import setup, find_packages
2import os
3
4version = '1.0'
5
6setup(name='kwarapoly.theme',
7      version=version,
8      description="Theme for kwarapoly",
9      long_description=open("README.txt").read() + "\n" +
10                       open(os.path.join("docs", "HISTORY.txt")).read(),
11      # Get more strings from
12      # http://pypi.python.org/pypi?:action=list_classifiers
13      classifiers=[
14        "Framework :: Plone",
15        "Programming Language :: Python",
16        ],
17      keywords='web zope plone theme',
18      author='Jan Filip Tristan Hasecke',
19      author_email='filip.hasecke@googlemail.com',
20      url='http://svn.plone.org/svn/collective/',
21      license='GPL',
22      packages=find_packages(exclude=['ez_setup']),
23      namespace_packages=['kwarapoly'],
24      include_package_data=True,
25      zip_safe=False,
26      install_requires=[
27          'setuptools',
28          'webcouturier.dropdownmenu',
29          'plone.app.dexterity',
30          'plone.app.jquery==1.7.2',
31                  'plone.app.jquerytools==1.5.1',
32          # -*- Extra requirements: -*-
33      ],
34      entry_points="""
35      # -*- Entry points: -*-
36
37      [z3c.autoinclude.plugin]
38      target = plone
39      """,
40      setup_requires=["PasteScript"],
41      paster_plugins=["ZopeSkel"],
42      )
Note: See TracBrowser for help on using the repository browser.