forked from miohtama/silvuple
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (28 loc) · 909 Bytes
/
Copy pathsetup.py
File metadata and controls
37 lines (28 loc) · 909 Bytes
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 silvuple
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 = "silvuple",
version = "0.0",
description = "Translation manager for Plone / LinguaPlone websites",
author = "Mikko Ohtamaa",
author_email = "mikko@opensourcehacker.com",
url = "http://opensourcehacker.com",
install_requires = ["five.grok", "plone.app.dexterity", "plone.app.registry", "odict"],
packages = ['silvuple'],
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
license="GPL2",
include_package_data = True,
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)