-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (50 loc) · 1.56 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
version = '2.2.dev0'
short_description = u"Lineage Add-On: Theme Selection on Subsites"
long_description = u'\n\n'.join([
open('README.rst').read(),
open('CHANGES.rst').read(),
open('LICENSE.rst').read(),
])
setup(
name='lineage.themeselection',
version=version,
description=short_description,
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Framework :: Plone :: 4.1',
'Framework :: Plone :: 4.2',
'Framework :: Plone :: 4.3',
'Framework :: Plone :: 5.0',
'Framework :: Plone :: 5.1',
],
keywords='',
author='BlueDynamics Alliance',
author_email='[email protected]',
url=u'https://github.com/collective/lineage.themeselection',
license='GNU General Public Licence',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['lineage', ],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'collective.lineage',
'lineage.registry',
'lineage.controlpanels',
'plone.app.theming', # for plone 4.2
],
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)