This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
pfwbged.policy/setup.py

79 lines
2.1 KiB
Python
Raw Permalink Normal View History

2013-03-26 16:40:19 +01:00
# -*- coding: utf-8 -*-
"""Installer for the pfwbged.policy package."""
from setuptools import find_packages
from setuptools import setup
long_description = (
open('README.rst').read()
+ '\n' +
'Contributors\n'
'============\n'
+ '\n' +
open('CONTRIBUTORS.rst').read()
+ '\n' +
open('CHANGES.rst').read()
+ '\n')
setup(
name='pfwbged.policy',
version='1.0',
description="Policy package for PFWB GED project",
long_description=long_description,
# Get more from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 4.2",
2013-06-01 14:05:23 +02:00
"Framework :: Plone :: 4.3",
2013-03-26 16:40:19 +01:00
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
keywords='pfwb,ged,policy',
author='Cédric Messiant',
author_email='cedricmessiant@ecreall.com',
url='http://pypi.python.org/pypi/pfwbged.policy',
license='GPL',
packages=find_packages('src', exclude=['ez_setup']),
namespace_packages=['pfwbged'],
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
2013-06-01 14:05:23 +02:00
'collective.contact.core',
2013-03-26 18:09:20 +01:00
'collective.dms.basecontent',
2013-08-27 10:54:32 +02:00
'collective.dms.batchimport',
2013-03-26 18:09:20 +01:00
'collective.dms.mailcontent',
2013-06-25 16:06:15 +02:00
'collective.documentviewer',
2013-06-26 10:56:00 +02:00
'collective.edm.listing',
2013-06-26 11:08:58 +02:00
'collective.externaleditor',
2013-08-27 10:54:32 +02:00
'collective.onlogin',
2013-06-01 14:05:23 +02:00
'collective.solr',
'collective.task',
'five.grok',
2013-03-26 18:09:20 +01:00
'pfwbged.basecontent',
2013-08-27 10:54:32 +02:00
'pfwbged.collection',
'pfwbged.contact',
2013-08-27 10:54:32 +02:00
'pfwbged.theme',
'pfwbged.folder',
'plone.app.contenttypes',
2013-08-27 10:54:32 +02:00
'z3c.jbot',
'Products.AROfficeTransforms',
2020-06-22 02:21:42 +02:00
'collective.impersonate',
2013-03-26 16:40:19 +01:00
],
extras_require={
'test': [
'ecreall.helpers.testing',
2013-08-27 10:54:32 +02:00
'plone.app.robotframework',
2013-03-26 16:40:19 +01:00
'plone.app.testing',
],
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)