forked from miohtama/plomobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (28 loc) · 765 Bytes
/
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
"""
Declare a Python package plomobile
See
* http://wiki.python.org/moin/Distutils/Tutorial
* http://packages.python.org/distribute/setuptools.html#developer-s-
* http://plone.org/products/plone/roadmap/247
"""
from setuptools import setup
setup(name = "plomobile",
version = "0.0",
description = "A Plone theme",
author = "",
author_email = "",
url = "",
install_requires = ["five.grok", "z3c.jbot"],
packages = ['plomobile'],
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
license="GPL2",
include_package_data = True,
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)