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

48 lines
1.4 KiB
Python
Raw Permalink Normal View History

2013-02-13 12:58:54 +01:00
#! -*- coding: utf8 -*-
from setuptools import setup, find_packages
version = '1.0'
setup(name='pfwbged.basecontent',
version=version,
description="Base content types for PFWB document management system",
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
2013-08-29 09:13:11 +02:00
classifiers=["Programming Language :: Python",
],
2013-02-13 12:58:54 +01:00
keywords='',
author='Frédéric Péters',
author_email='fpeters@entrouvert.com',
license='gpl',
packages=find_packages('src'),
2013-08-29 09:13:11 +02:00
package_dir={'': 'src'},
2013-02-13 12:58:54 +01:00
namespace_packages=['pfwbged'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
'ecreall.helpers.upgrade',
2013-02-13 12:58:54 +01:00
'five.grok',
'collective.contact.core',
'collective.dms.thesaurus',
2013-02-13 12:58:54 +01:00
'collective.dms.basecontent',
'collective.task',
'collective.z3cform.chosen',
'plone.api',
2013-08-29 09:13:11 +02:00
'plone.app.dexterity',
'plone.formwidget.datetime',
2013-02-13 12:58:54 +01:00
],
extras_require={
'test': ['plone.app.testing',
'ecreall.helpers.testing',
'plone.app.vocabularies'
],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)