-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (39 loc) · 1.11 KB
/
setup.py
File metadata and controls
48 lines (39 loc) · 1.11 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
39
40
41
42
43
44
45
46
47
48
"""
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
import os
setup(name="silvuple",
version='1.3.dev0',
description="Translation manager for Plone / LinguaPlone websites",
long_description=open("README.rst").read() + "\n\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
author="Mikko Ohtamaa",
author_email="mikko@opensourcehacker.com",
url="http://opensourcehacker.com",
install_requires=[
"Plone",
"Products.LinguaPlone",
"five.grok",
"plone.app.dexterity",
"plone.app.registry",
"plone.directives.form",
"odict"
],
packages=['silvuple'],
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
license="GPL2",
include_package_data=True,
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)