-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (36 loc) · 1.04 KB
/
setup.py
File metadata and controls
executable file
·38 lines (36 loc) · 1.04 KB
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
from setuptools import find_packages
from setuptools import setup
setup(
author="Rob Porter",
author_email="robzonenet@gmail.com",
classifiers=[
'Framework :: Plone :: 4.3',
'Programming Language :: Python :: 2.7',
],
description="collective.responsivetheme reimplemented with Diazo.",
keywords='Diazo Modern Plone Sunburst Theme Theming Responsive',
include_package_data=True,
long_description=(
open("README.rst").read() + '\n' +
open("HISTORY.txt").read()
),
entry_points={
'z3c.autoinclude.plugin': 'target = plone',
},
license="GPL2",
name='plonetheme.diazo_responsivetheme',
namespace_packages=[
'plonetheme',
],
packages=find_packages(),
url="http://github.com/weblion/diazo_responsivetheme",
version="1.1",
zip_safe=False,
install_requires=[
'setuptools',
'plone.app.theming',
'kreagroup.jsi18n',
# -*- Extra requirements: -*-
],
setup_requires = [ "setuptools_git >= 0.3", ],
)