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.basecontent/setup.py

73 lines
2.1 KiB
Python
Raw Normal View History

2013-01-07 12:58:48 +01:00
#! -*- coding: utf8 -*-
from setuptools import setup, find_packages
2013-03-08 08:59:03 +01:00
version = '0.1.2.dev0'
2013-01-07 12:58:48 +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.basecontent',
version=version,
description="Base content types for document management system",
long_description=long_description,
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
2013-03-06 16:01:59 +01:00
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 4.2",
2013-06-01 14:21:11 +02:00
"Framework :: Plone :: 4.3",
2013-03-06 16:01:59 +01:00
"Operating System :: OS Independent",
2013-01-07 12:58:48 +01:00
"Programming Language :: Python",
2013-03-06 16:01:59 +01:00
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
2013-01-07 12:58:48 +01:00
],
keywords='',
2013-03-06 16:01:59 +01:00
author='Ecreall, Entrouvert, IMIO',
2013-01-07 12:58:48 +01:00
author_email='cedricmessiant@ecreall.com',
2013-03-06 16:01:59 +01:00
url='https://github.com/collective/collective.dms.basecontent',
2013-01-07 12:58:48 +01:00
license='gpl',
packages=find_packages('src'),
package_dir = {'': 'src'},
namespace_packages=['collective', 'collective.dms'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
2013-01-07 15:29:50 +01:00
'five.grok',
2013-07-01 10:41:49 +02:00
'collective.documentviewer',
'collective.select2',
2013-06-26 16:17:30 +02:00
'plone.api',
2013-01-07 15:29:50 +01:00
'plone.app.dexterity',
'plone.namedfile',
'z3c.blobfile',
2013-06-28 16:57:41 +02:00
'plone.app.contenttypes',
2013-01-09 13:07:24 +01:00
'plone.app.relationfield',
'plone.formwidget.contenttree',
'plone.principalsource',
'collective.z3cform.chosen',
'collective.z3cform.rolefield',
2013-04-06 18:21:38 +02:00
'z3c.table',
2018-10-05 10:56:04 +02:00
'plone.memoize',
2013-01-07 12:58:48 +01:00
],
2013-01-07 13:32:00 +01:00
extras_require={
'test': ['plone.app.testing',
'ecreall.helpers.testing',
'plone.app.vocabularies'
2013-01-07 13:32:00 +01:00
],
},
2013-01-07 12:58:48 +01:00
entry_points="""
# -*- Entry points: -*-
2013-01-07 14:31:47 +01:00
[z3c.autoinclude.plugin]
target = plone
2013-01-07 12:58:48 +01:00
""",
)