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.
collective.dms.mailcontent/setup.py

65 lines
1.9 KiB
Python

#! -*- coding: utf8 -*-
from setuptools import setup, find_packages
version = '0.1.5.dev0'
long_description = (
open('README.rst').read()
+ '\n' +
'Contributors\n'
'============\n'
+ '\n' +
open('CONTRIBUTORS.rst').read()
+ '\n' +
open('CHANGES.rst').read()
+ '\n')
setup(name='collective.dms.mailcontent',
version=version,
description="Mail content type for document management system",
long_description=long_description,
classifiers=[
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 4.2",
"Framework :: Plone :: 4.3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='',
author='Ecreall, Entrouvert, IMIO',
author_email='cedricmessiant@ecreall.com',
url='https://github.com/collective/collective.dms.mailcontent',
license='gpl',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['collective', 'collective.dms'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'plone.api',
'plone.app.dexterity',
'plone.directives.form',
'collective.contact.core',
'collective.dms.basecontent',
'plone.formwidget.datetime',
#'plone.app.relationfield',
'five.grok',
],
extras_require={
'test': ['plone.app.testing',
'ecreall.helpers.testing',
],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)