Commit 8ec1c010 authored by Jim Fulton's avatar Jim Fulton

Updated ignoes and fixed setup metadata.

parent a5b288e5
......@@ -3,6 +3,13 @@ from setuptools import setup, find_packages
setup(
name = "zc.recipe.egg",
version = "1.0",
author = "Jim Fulton",
author_email = "jim@zope.com",
description = "Recipe for installing Python package distributions as eggs",
license = "ZPL 2.1",
keywords = "development build",
url='http://svn.zope.org/zc.buildout',
packages = find_packages('src'),
include_package_data = True,
package_dir = {'':'src'},
......@@ -10,10 +17,5 @@ setup(
install_requires = ['zc.buildout', 'setuptools'],
tests_require = ['zope.testing'],
test_suite = 'zc.recipe.eggs.tests.test_suite',
author = "Jim Fulton",
author_email = "jim@zope.com",
description = "Recipe for installing Python package distributions as eggs",
license = "ZPL 2.1",
keywords = "development build",
entry_points = {'zc.buildout': ['default = zc.recipe.egg:Egg']},
)
......@@ -3,6 +3,13 @@ from setuptools import setup, find_packages
setup(
name = "zc.recipe.testrunner",
version = "1.0",
author = "Jim Fulton",
author_email = "jim@zope.com",
description = "ZC Buildout recipe for creating test runners",
license = "ZPL 2.1",
keywords = "development build",
url='http://svn.zope.org/zc.buildout',
packages = find_packages('src'),
include_package_data = True,
package_dir = {'':'src'},
......@@ -10,11 +17,6 @@ setup(
install_requires = ['zc.buildout', 'zope.testing', 'setuptools'],
dependency_links = ['http://download.zope.org/distribution/'],
test_suite = 'zc.recipe.testrunner.tests.test_suite',
author = "Jim Fulton",
author_email = "jim@zope.com",
description = "ZC Buildout recipe for creating test runners",
license = "ZPL 2.1",
keywords = "development build",
entry_points = {'zc.buildout':
['default = zc.recipe.testrunner:TestRunner']},
)
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