1 | from setuptools import setup, find_packages |
---|
2 | import os |
---|
3 | |
---|
4 | version = '1.0' |
---|
5 | |
---|
6 | setup(name='ngren.theme', |
---|
7 | version=version, |
---|
8 | description="Theme for NgREN", |
---|
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=['ngren'], |
---|
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 | ) |
---|