Skip to content
This repository has been archived by the owner on Feb 12, 2020. It is now read-only.

Commit

Permalink
post-git cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Mar 2, 2013
1 parent 13359dc commit b5c1c9e
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 30 deletions.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include *.rst
include *.txt

recursive-include src/ *

global-exclude *.pyc
global-exclude *.pyo
5 changes: 2 additions & 3 deletions README.txt → README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Overview
========

The cmf.pt package allows using the Chameleon template engine with the
Zope 2 CMF.
Zope CMF.

Usage
-----
Expand All @@ -12,5 +12,4 @@ To enable Chameleon, simply include the ZCML configuration::
<include package="cmf.pt" />

For general information about Chameleon, see
http://chameleon.repoze.org/.

http://chameleon.readthedocs.org.
55 changes: 28 additions & 27 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,35 +1,36 @@
from setuptools import setup, find_packages

version = '1.1dev'
__version__ = '1.1dev'

setup(name='cmf.pt',
version=version,
description="Bridge to use Chameleon with Zope 2 and CMF.",
long_description=open("README.txt").read() + open("CHANGES.txt").read(),
classifiers=[
setup(
name='cmf.pt',
version=__version__,
description="Bridge to use Chameleon with Zope 2 and CMF.",
long_description=open("README.rst").read() + open("CHANGES.rst").read(),
classifiers=[
"Framework :: Plone",
"Framework :: Zope2",
"Programming Language :: Python",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: XML",
],
keywords='',
author='Malthe Borch and the Zope community',
author_email='zope-dev@zope.org',
url='',
license='ZPL',
namespace_packages=['cmf'],
packages = find_packages('src'),
package_dir = {'':'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'z3c.pt>=1.0b7',
'five.pt',
],
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)
],
keywords='',
author='Malthe Borch and the Zope community',
author_email='zope-dev@zope.org',
url='',
license='ZPL',
namespace_packages=['cmf'],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'z3c.pt>=1.0b7',
'five.pt',
],
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)

0 comments on commit b5c1c9e

Please sign in to comment.