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
Raw Permalink Normal View History

2013-01-07 13:11:43 +01:00
#! -*- coding: utf8 -*-
from setuptools import setup, find_packages
2013-04-24 11:21:44 +02:00
version = '0.1.5.dev0'
2013-01-07 13:11:43 +01:00
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=[
2013-08-30 19:05:38 +02:00
"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",
],
2013-01-07 13:11:43 +01:00
keywords='',
2013-03-07 10:12:07 +01:00
author='Ecreall, Entrouvert, IMIO',
2013-01-07 13:11:43 +01:00
author_email='cedricmessiant@ecreall.com',
2013-03-07 10:12:07 +01:00
url='https://github.com/collective/collective.dms.mailcontent',
2013-01-07 13:11:43 +01:00
license='gpl',
packages=find_packages('src'),
2013-08-30 19:05:38 +02:00
package_dir={'': 'src'},
2013-01-07 13:11:43 +01:00
namespace_packages=['collective', 'collective.dms'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
2013-06-26 16:18:53 +02:00
'plone.api',
2013-01-18 14:11:50 +01:00
'plone.app.dexterity',
'plone.directives.form',
'collective.contact.core',
2013-06-21 15:45:44 +02:00
'collective.dms.basecontent',
2013-04-04 17:18:12 +02:00
'plone.formwidget.datetime',
2013-08-30 19:05:38 +02:00
#'plone.app.relationfield',
2013-01-07 14:11:40 +01:00
'five.grok',
2013-01-07 13:11:43 +01:00
],
2013-01-07 13:52:47 +01:00
extras_require={
'test': ['plone.app.testing',
'ecreall.helpers.testing',
],
},
2013-01-07 13:11:43 +01:00
entry_points="""
# -*- Entry points: -*-
2013-01-07 14:11:40 +01:00
[z3c.autoinclude.plugin]
target = plone
2013-01-07 13:11:43 +01:00
""",
)