41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
|
from setuptools import setup, find_packages
|
||
|
import os
|
||
|
|
||
|
version = '1.0'
|
||
|
|
||
|
setup(name='discussion.examplecontent',
|
||
|
version=version,
|
||
|
description="Example content for testing and developing plone.app.discussion",
|
||
|
long_description=open("README.txt").read() + "\n" +
|
||
|
open(os.path.join("docs", "HISTORY.txt")).read(),
|
||
|
# Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers
|
||
|
classifiers=[
|
||
|
"Framework :: Plone",
|
||
|
"Programming Language :: Python",
|
||
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||
|
],
|
||
|
keywords='',
|
||
|
author='Timo Stollenwerk',
|
||
|
author_email='timo@zmag.de',
|
||
|
url='http://svn.plone.org/svn/plone/plone.example',
|
||
|
license='GPL',
|
||
|
packages=find_packages(exclude=['ez_setup']),
|
||
|
namespace_packages=['discussion'],
|
||
|
include_package_data=True,
|
||
|
zip_safe=False,
|
||
|
install_requires=[
|
||
|
'setuptools',
|
||
|
# -*- Extra requirements: -*-
|
||
|
],
|
||
|
entry_points="""
|
||
|
# -*- Entry points: -*-
|
||
|
|
||
|
[distutils.setup_keywords]
|
||
|
paster_plugins = setuptools.dist:assert_string_list
|
||
|
|
||
|
[egg_info.writers]
|
||
|
paster_plugins.txt = setuptools.command.egg_info:write_arg
|
||
|
""",
|
||
|
paster_plugins = ["ZopeSkel"],
|
||
|
)
|