Skip to content

Commit

Permalink
Nest into Github.
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
tseaver committed Dec 29, 2014
1 parent d9fccea commit 15cd10d
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 21 deletions.
19 changes: 9 additions & 10 deletions CHANGES.txt → CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
=======
CHANGES
Changes
=======

4.0.2 (unreleased)
------------------

- Nothing changed yet.
- Add support for testing on Travis.


4.0.1 (2013-03-08)
Expand All @@ -17,14 +16,14 @@ CHANGES
4.0.0 (2013-02-13)
------------------

- Replaced deprecated ``zope.interface.implements`` usage with equivalent
- Replace deprecated ``zope.interface.implements`` usage with equivalent
``zope.interface.implementer`` decorator.

- Dropped support for Python 2.4 and 2.5.
- Drop support for Python 2.4 and 2.5.

- Added support for Python 3.2 and 3.3.
- Add support for Python 3.2 and 3.3.

- Conditionally disabled tests that require ``zope.configuration`` and
- Conditionally disable tests that require ``zope.configuration`` and
``zope.security``.


Expand All @@ -37,13 +36,13 @@ CHANGES
3.4.1 (2009-09-10)
------------------

- Added support to bootstrap on Jython.
- Add support for bootstrapping on Jython.

- Added docstrings
- Add docstrings.

- Beautify package's README and include CHANGES into the description.

- Changed package's url to PyPI instead of Subversion.
- Change package's url to PyPI instead of Subversion.

3.4.0 (2006-09-29)
------------------
Expand Down
9 changes: 9 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
``zope.size``
=============

This package provides a definition of simple interface that allows
applications to retrieve the size of the object for displaying and for sorting.

The default adapter is also provided. It expects objects to have the ``getSize``
method that returns size in bytes. However, the adapter won't crash if an
object doesn't have one and will show size as "not available" instead.
6 changes: 0 additions & 6 deletions README.txt

This file was deleted.

11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@
##############################################################################
"""Setup for zope.size package
"""

import os
from setuptools import setup, find_packages

def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as f:
return f.read()

setup(name='zope.size',
version='4.0.2.dev0',
url='http://pypi.python.org/pypi/zope.size',
Expand All @@ -29,10 +33,7 @@
'Interfaces and simple adapter that give the size of an object',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
long_description=\
open('README.txt').read() + \
'\n\n' + \
open('CHANGES.txt').read(),
long_description=read('README.rst') + '\n\n' + read('CHANGES.rst'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 15cd10d

Please sign in to comment.