Skip to content

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 487f927 commit 710f22a
Show file tree
Hide file tree
Showing 28 changed files with 56 additions and 36 deletions.
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
bin
build
develop-eggs
dist
lib
include
man
parts

__pycache__
.*
*.dll
*.pyc
*.pyo
*.so
File renamed without changes.
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
File renamed without changes.
63 changes: 33 additions & 30 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,36 +1,39 @@
from setuptools import setup, find_packages

version = '0.7.1'
__version__ = '0.7.1'

setup(name='z3c.jbot',
version=version,
description="Drop-in template overrides.",
long_description="\n".join(
(open("README.txt").read(), open("CHANGES.txt").read())),
classifiers=[
setup(
name='z3c.jbot',
version=__version__,
description="Drop-in template overrides.",
long_description=(open('README.rst').read() + "\n" +
open('CHANGES.rst').read()),
classifiers=[
"Framework :: Zope2",
"Framework :: Zope3",
"Programming Language :: Python",
],
keywords='page template override',
author='Malthe Borch',
author_email='mborch@gmail.com',
url='',
license='ZPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['z3c'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zope.pagetemplate',
'zope.component',
'zope.configuration',
'zope.security',
'zope.publisher',
],
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)
],
keywords='page template override',

author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
url='http://pypi.python.org/pypi/z3c.jbot',
license='ZPL 2.1',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['z3c'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zope.pagetemplate',
'zope.component',
'zope.configuration',
'zope.security',
'zope.publisher',
],
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)
1 change: 1 addition & 0 deletions src/z3c/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 0 additions & 6 deletions z3c/__init__.py

This file was deleted.

0 comments on commit 710f22a

Please sign in to comment.