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

improved meta data

parent 4852622c
...@@ -88,12 +88,10 @@ and substitution extensions. ...@@ -88,12 +88,10 @@ and substitution extensions.
The detailed documentation for the various parts of buildout can be The detailed documentation for the various parts of buildout can be
found in the following files: found in the following files:
bootstrap.txt
Describes how to use the bootstrapping script
buildout.txt buildout.txt
Describes how to define and run buildouts. It also describes how Describes how to define and run buildouts. It also describes how
to write recipes. to write recipes.
recipes.txt easy_install.txt
Documents the few built-in recipes. 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 ...@@ -3,17 +3,21 @@ from setuptools import setup, find_packages
setup( setup(
name = "zc.buildout", name = "zc.buildout",
version = "1.0", 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'], packages = ['zc', 'zc.buildout'],
package_dir = {'': 'src'}, package_dir = {'': 'src'},
namespace_packages = ['zc'], namespace_packages = ['zc'],
include_package_data = True, include_package_data = True,
tests_require = ['zope.testing'], tests_require = ['zope.testing'],
test_suite = 'zc.buildout.tests.test_suite', 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', install_requires = 'setuptools',
entry_points = {'console_scripts': entry_points = {'console_scripts':
['buildout = zc.buildout.buildout:main']}, ['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