Commit 829a62dd authored by Jim Fulton's avatar Jim Fulton

improved meta data

parent 4852622c
......@@ -88,12 +88,10 @@ and substitution extensions.
The detailed documentation for the various parts of buildout can be
found in the following files:
bootstrap.txt
Describes how to use the bootstrapping script
buildout.txt
Describes how to define and run buildouts. It also describes how
to write recipes.
recipes.txt
Documents the few built-in recipes.
easy_install.txt
Describes an Python APIs for invoking easy_install for for
generation of scripts with paths baked into them.
......@@ -3,17 +3,21 @@ from setuptools import setup, find_packages
setup(
name = "zc.buildout",
version = "1.0",
author = "Jim Fulton",
author_email = "jim@zope.com",
description = "System for managing development buildouts",
license = "ZPL 2.1",
keywords = "development build",
url='http://svn.zope.org/zc.buildout',
long_description=open('README.txt').read(),
packages = ['zc', 'zc.buildout'],
package_dir = {'': 'src'},
namespace_packages = ['zc'],
include_package_data = True,
tests_require = ['zope.testing'],
test_suite = 'zc.buildout.tests.test_suite',
author = "Jim Fulton",
author_email = "jim@zope.com",
description = "System for managing development buildouts",
license = "ZPL 2.1",
keywords = "development build",
install_requires = 'setuptools',
entry_points = {'console_scripts':
['buildout = zc.buildout.buildout:main']},
......
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