Commit be3ef8d0 authored by Łukasz Nowak's avatar Łukasz Nowak

Revert "Replace original documentation and metadata with minimalistic one."

This reverts commit f5fc8e90.
parent b2f2d955
...@@ -21,7 +21,38 @@ def read(*rnames): ...@@ -21,7 +21,38 @@ def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read() return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description=( long_description=(
read('README.SlapOS.txt') read('README.txt')
+ '\n' +
read('SYSTEM_PYTHON_HELP.txt')
+ '\n' +
'Detailed Documentation\n'
'**********************\n'
+ '\n' +
read('src', 'zc', 'buildout', 'buildout.txt')
+ '\n' +
read('src', 'zc', 'buildout', 'unzip.txt')
+ '\n' +
read('src', 'zc', 'buildout', 'repeatable.txt')
+ '\n' +
read('src', 'zc', 'buildout', 'download.txt')
+ '\n' +
read('src', 'zc', 'buildout', 'downloadcache.txt')
+ '\n' +
read('src', 'zc', 'buildout', 'extends-cache.txt')
+ '\n' +
read('src', 'zc', 'buildout', 'setup.txt')
+ '\n' +
read('src', 'zc', 'buildout', 'update.txt')
+ '\n' +
read('src', 'zc', 'buildout', 'debugging.txt')
+ '\n' +
read('src', 'zc', 'buildout', 'testing.txt')
+ '\n' +
read('src', 'zc', 'buildout', 'easy_install.txt')
+ '\n' +
read('src', 'zc', 'buildout', 'distribute.txt')
+ '\n' +
read('CHANGES.txt')
+ '\n' + + '\n' +
'Download\n' 'Download\n'
'**********************\n' '**********************\n'
...@@ -39,12 +70,13 @@ debug = %(name)s.testrecipes:Debug ...@@ -39,12 +70,13 @@ debug = %(name)s.testrecipes:Debug
setup( setup(
name = 'slapos.buildout', name = 'slapos.buildout',
version = version, version = version,
author = "SlapOS Team", author = "Jim Fulton",
author_email = "jim@zope.com",
description = "System for managing development buildouts", description = "System for managing development buildouts",
long_description=long_description, long_description=long_description,
license = "ZPL 2.1", license = "ZPL 2.1",
keywords = "development build", keywords = "development build",
url='https://gitorious.org/slapos/slapos-buildout', url='http://pypi.python.org/pypi/zc.buildout',
data_files = [('.', ['README.txt'])], data_files = [('.', ['README.txt'])],
packages = ['zc', 'zc.buildout'], packages = ['zc', 'zc.buildout'],
......
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