Skip to content

Commit

Permalink
Minimal package boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed May 3, 2008
1 parent 18a0ca7 commit def4f23
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 8 deletions.
28 changes: 21 additions & 7 deletions Products/ZopeVersionControl/CHANGES.txt → CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,30 +1,45 @@
ZopeVersionControl Product Changelog
Changelog
=========

ZopeVersionControl 0.3.4 (2007/02/05)
1.0a1 (unreleased)
------------------

- Updated package metadata.

0.3.4 (2007/02/05)
------------------

- Add omitted 'tests/common.py' module.

ZopeVersionControl 0.3.3 (2006/09/20)

0.3.3 (2006/09/20)
------------------

- __init__.py, nonversioned.py: Fixed compatibility with Zope 2.8
and new-style objects (http://www.zope.org/Collectors/Zope/2137)

ZopeVersionControl 0.3.2 (2006/06/02)

0.3.2 (2006/06/02)
------------------

- ZopeRepository.py: make ZR addable via GenericSetup toolset
(http://www.zope.org/Collectors/CMF/438).

- Utility.py: Import cleanup, including compatibility with ZODB 3.3+
location of 'refrencesf'.

ZopeVersionControl 0.3.1 (2004/05/03)

0.3.1 (2004/05/03)
------------------

- IVersionControl.py: Added a module-scope alias for the benefit
of older software which depended on the old name.

- Hardened unit tests against the absence of the References product.

ZopeVersionControl 0.3 (2004/04/20)

0.3 (2004/04/20)
----------------

- Refined the pattern for maintaining parts of objects independently
of version control. This is a generalization of the mechanism for
Expand All @@ -46,4 +61,3 @@ ZopeVersionControl Product Changelog
2. It assumes that versionable objects are simply wrapped using
acquisition. References (symlink-like objects) break this
assumption.

2 changes: 1 addition & 1 deletion Products/ZopeVersionControl/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ZopeVersionControl-0.3.4
1.0a1
6 changes: 6 additions & 0 deletions Products/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from setuptools import setup, find_packages


setup(name='Products.ZopeVersionControl',
version='1.0a1',
description="Zope Version Control",
long_description=open("CHANGES.txt").read(),
classifiers=[
'Framework :: Zope2',
],
author='Zope Corporation and Contributors',
author_email='zope-dev@zope.org',
url='http://pypi.python.org/pypi/Products.ZopeVersionControl',
packages=find_packages(),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
],
)

0 comments on commit def4f23

Please sign in to comment.