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 9484218 commit b92060c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,13 @@
# When developing and releasing this package, please follow the documented
# Zope Toolkit policies as described by this documentation.
##############################################################################
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()

def alltests():
import os
import sys
Expand All @@ -33,9 +38,7 @@ def alltests():
suites = list(zope.testrunner.find.find_suites(options))
return unittest.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.copypastemove',
version='4.0.0.dev0',
Expand Down

0 comments on commit b92060c

Please sign in to comment.