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 996ebea commit 00717ad
Show file tree
Hide file tree
Showing 10 changed files with 63 additions and 83 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.
33 changes: 0 additions & 33 deletions INSTALL.txt

This file was deleted.

File renamed without changes.
6 changes: 5 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
include *.rst
include *.txt

recursive-include src *
include *

global-exclude *.pyc
global-exclude *.pyo
4 changes: 2 additions & 2 deletions README.txt → README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ been made to ease the path with CMF.
Developer Resources
-------------------

- Subversion browser:
- Source code:

http://svn.zope.org/five.localsitemanager
https://github.com/zopefoundation/five.localsitemanager
4 changes: 2 additions & 2 deletions buildout.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[buildout]
extends = http://download.zope.org/Zope2/index/2.13.3/versions.cfg
extends = http://download.zope.org/Zope2/index/2.13.19/versions.cfg
parts = test
develop = .

[test]
recipe = zc.recipe.testrunner
eggs =
eggs =
five.localsitemanager
defaults = ['-c', '--module', 'five.localsitemanager']
76 changes: 38 additions & 38 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
from setuptools import setup

version = '2.0.6dev'
__version__ = '2.0.6dev'

setup(name='five.localsitemanager',
version=version,
url='http://pypi.python.org/pypi/five.localsitemanager',
license='ZPL 2.1',
description='Local site manager implementation for Zope 2',
author='Zope Foundation and Contributors',
author_email='zope-cmf@zope.org',
long_description=open("README.txt").read() + "\n" +
open("INSTALL.txt").read() + "\n" +
open("CHANGES.txt").read(),
classifiers=[
'Environment :: Web Environment',
'Framework :: Zope2',
'License :: OSI Approved :: Zope Public License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
keywords='zope zope2 five sitemanager',
packages=['five', 'five.localsitemanager'],
package_dir = {'': 'src'},
namespace_packages=['five',],
include_package_data = True,
install_requires=[
'Acquisition',
'ZODB3',
'setuptools',
'zope.component',
'zope.event',
'zope.interface',
'zope.location',
'zope.lifecycleevent',
'zope.testing',
'Zope2 >= 2.12.0',
],
zip_safe = False,
)
setup(
name='five.localsitemanager',
version=__version__,
url='http://pypi.python.org/pypi/five.localsitemanager',
license='ZPL 2.1',
description='Local site manager implementation for Zope.',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
long_description=(open("README.rst").read() + "\n" +
open("CHANGES.rst").read()),
classifiers=[
'Environment :: Web Environment',
'Framework :: Zope2',
'License :: OSI Approved :: Zope Public License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
keywords='zope five sitemanager',
packages=['five', 'five.localsitemanager'],
package_dir={'': 'src'},
namespace_packages=['five'],
include_package_data=True,
install_requires=[
'Acquisition',
'ZODB3',
'setuptools',
'zope.component',
'zope.event',
'zope.interface',
'zope.location',
'zope.lifecycleevent',
'zope.testing',
'Zope2 >= 2.12.0',
],
zip_safe = False,
)
8 changes: 1 addition & 7 deletions src/five/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
# namespace package boilerplate
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError, e:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)

__import__('pkg_resources').declare_namespace(__name__)

0 comments on commit 00717ad

Please sign in to comment.