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 cf81dd3 commit 8d64137
Show file tree
Hide file tree
Showing 13 changed files with 51 additions and 72 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.
44 changes: 0 additions & 44 deletions LICENSE.txt

This file was deleted.

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.
57 changes: 29 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,36 +1,37 @@
from setuptools import setup, find_packages
import os.path

version = '1.2dev'
__version__ = '1.2dev'

setup(name='plone.postpublicationhook',
version=version,
description="Zope 2 post-publication hook",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
setup(
name='plone.postpublicationhook',
version=__version__,
description="Zope post-publication hook.",
long_description=(open("README.rst").read() + "\n" +
open("CHANGES.rst").read()),
classifiers=[
"Programming Language :: Python",
"Environment :: Web Environment",
"Framework :: Zope2",
"Intended Audience :: Developers",
"License :: OSI Approved :: Zope Public License",
],
keywords='',
author='Wichert Akkerman',
author_email='wichert@wiggy.net',
url='',
license='ZPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['plone'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zope.event',
'zope.interface',
'zope.security',
],
extras_require={
'Zope2.10': ['ZPublisherEventsBackport'],
},
)
],
keywords='',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
url='http://pypi.python.org/pypi/plone.postpublicationhook',
license='ZPL',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['plone'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zope.event',
'zope.interface',
'zope.security',
],
extras_require={
'Zope2.10': ['ZPublisherEventsBackport'],
},
)
File renamed without changes.
File renamed without changes.

0 comments on commit 8d64137

Please sign in to comment.