Skip to content

Commit

Permalink
Nest into Github.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Dec 26, 2014
1 parent ecc356b commit c6d17f4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
File renamed without changes.
8 changes: 5 additions & 3 deletions README.txt → README.rst
@@ -1,6 +1,8 @@
========
Overview
========
``zope.browserresource`` Overview
=================================

.. image:: https://travis-ci.org/zopefoundation/zope.interface.png?branch=master
:target: https://travis-ci.org/zopefoundation/zope.interface

*This package is at present not reusable without depending on a large
chunk of the Zope Toolkit and its assumptions. It is maintained by the*
Expand Down
9 changes: 6 additions & 3 deletions setup.py
Expand Up @@ -18,6 +18,10 @@
from setuptools import setup, find_packages


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

def test_suite():
# use the zope.testrunner machinery to find all the
# test suites we've put under ourselves
Expand All @@ -33,11 +37,10 @@ def test_suite():
return TestSuite(suites)


long_description = (open('README.txt').read() + '\n\n' +
open('CHANGES.txt').read())
long_description = read('README.rst') + '\n\n' + read('CHANGES.rst')

setup(name='zope.browserresource',
version='4.0.3.dev0',
version='4.1.0.dev0',
url='http://pypi.python.org/pypi/zope.browserresource/',
author='Zope Foundation and Contributors',
author_email='zope-dev@zope.org',
Expand Down

0 comments on commit c6d17f4

Please sign in to comment.