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 24, 2014
1 parent fe13d4e commit f0b3050
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@
##############################################################################
"""zope.browsermenu setup
"""
import os
from setuptools import setup, find_packages

long_description = (open('README.txt').read() + '\n\n' +
open('CHANGES.txt').read())
def read(*rnames):
with open(os.path.join(os.path.dirname(__file__), *rnames)) as f:
return f.read()

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

def alltests():
import os
Expand Down

0 comments on commit f0b3050

Please sign in to comment.