Commit 57cc64b9 authored by Jim Fulton's avatar Jim Fulton

Fixed a bug in reading doc files to create a lng desription. Relative

paths were used, causing setup to fail when run from a different
directory.

Updated release information.
parent f951c678
import os import os
from setuptools import setup, find_packages from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
name = "zc.buildout" name = "zc.buildout"
setup( setup(
name = name, name = name,
version = "1.0.0b7", version = "1.0.0b8",
author = "Jim Fulton", author = "Jim Fulton",
author_email = "jim@zope.com", author_email = "jim@zope.com",
description = "System for managing development buildouts", description = "System for managing development buildouts",
long_description=( long_description=(
open('README.txt').read() read('README.txt')
+ '\n' + + '\n' +
open('CHANGES.txt').read() read('CHANGES.txt')
+ '\n' + + '\n' +
'Detailed Documentation\n' 'Detailed Documentation\n'
'**********************\n' '**********************\n'
+ '\n' + + '\n' +
open(os.path.join('src', 'zc', 'buildout', 'buildout.txt')).read() read('src', 'zc', 'buildout', 'buildout.txt')
+ '\n' +
read('src', 'zc', 'buildout', 'update.txt')
+ '\n' + + '\n' +
open(os.path.join('src', 'zc', 'buildout', 'update.txt')).read() read('src', 'zc', 'buildout', 'testing.txt')
+ '\n' + + '\n' +
open(os.path.join('src', 'zc', 'buildout', 'testing.txt')).read() 'Download\n'
'**********************\n'
), ),
license = "ZPL 2.1", license = "ZPL 2.1",
keywords = "development build", keywords = "development build",
...@@ -36,7 +42,6 @@ setup( ...@@ -36,7 +42,6 @@ setup(
test_suite = name+'.tests.test_suite', test_suite = name+'.tests.test_suite',
entry_points = {'console_scripts': entry_points = {'console_scripts':
['buildout = %s.buildout:main' % name]}, ['buildout = %s.buildout:main' % name]},
# dependency_links = ['http://download.zope.org/distribution/'],
zip_safe=False, zip_safe=False,
classifiers = [ classifiers = [
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment