forked from plone/plone.app.multilingual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·55 lines (53 loc) · 1.64 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
55
from setuptools import setup, find_packages
import os
version = '2.0dev'
setup(
name='plone.app.multilingual',
version=version,
description="Multilingual Plone UI package, enables maintenance of "
"translations for both Dexterity types and Archetypes",
long_description="\n\n".join([
open("README.rst").read(),
open(os.path.join("docs", "CREDITS.txt")).read(),
open(os.path.join("docs", "HISTORY.txt")).read(),
]),
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
url='https://github.com/plone/plone.app.multilingual',
license='GPL',
author='Ramon Navarro, Victor Fernandez de Alba, awello et al',
author_email='[email protected]',
packages=find_packages('devel'),
package_dir={'': 'devel'},
namespace_packages=['plone', 'plone.app'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'z3c.relationfield',
'plone.behavior',
'plone.dexterity>=2.1',
'plone.app.z3cform',
'plone.app.registry',
'plone.directives.form',
'plone.formwidget.contenttree',
'Products.PloneLanguageTool',
],
extras_require={
'archetypes': ['archetypes.multilingual'],
'test': [
'plone.app.testing[robot]>=4.2.2',
'plone.app.robotframework',
'archetypes.multilingual',
'decorator', # BBB
],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)