Skip to content
This repository has been archived by the owner on Dec 18, 2020. It is now read-only.

Commit

Permalink
cleanup of buildout support
Browse files Browse the repository at this point in the history
  • Loading branch information
jodok committed Mar 22, 2007
1 parent 50b3fcd commit 747351d
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,31 @@
from setuptools import setup, find_packages

setup(
name='z3c.sampledata',
version='0.1.0',
name = 'z3c.sampledata',
version = '0.1.0',
author = "Zope Community",
author_email = "zope3-dev@zope.org",
description = open("README.txt").read(),
license = "ZPL 2.1",
keywords = "sampledata zope zope3",
url='http://svn.zope.org/z3c.sampledata',
url = 'http://svn.zope.org/z3c.sampledata',

zip_safe=False,
packages=find_packages('src'),
include_package_data=True,
zip_safe = False,
packages = find_packages('src'),
include_package_data = True,
package_dir = {'':'src'},
namespace_packages=['z3c',],
namespace_packages = ['z3c',],

install_requires = [
'setuptools',
'zope.interface',
'zope.component',
'zope.schema',
'ZODB3',
'zope.app.container',
'zope.i18nmessageid'
],
extras_require = dict(
test = ['zope.i18nmessageid', 'zope.interface', 'zope.component',
'zope.schema', 'zope.app.testing'],
test = ['zope.app.testing'],
),
)

0 comments on commit 747351d

Please sign in to comment.