Skip to content

Commit

Permalink
Added simple files so the package can be used as a develop egg in ano…
Browse files Browse the repository at this point in the history
…ther buildout, dependencies haven't been answered in setup.py
  • Loading branch information
Darryl Cousins committed Jun 29, 2007
1 parent bc8d1fa commit 9c090dd
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
21 changes: 21 additions & 0 deletions setup.py
@@ -0,0 +1,21 @@
#!python
from setuptools import setup, find_packages

setup(name='z3c.breadcrumb',
version='0.1.0',
author = "Zope Community",
author_email = "zope3-dev@zope.org",
license = "ZPL 2.1",
keywords = "breadcrumb zope zope3",
url='http://svn.zope.org/z3c.breadcrumb',

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

1 change: 1 addition & 0 deletions src/z3c/__init__.py
@@ -0,0 +1 @@
#

0 comments on commit 9c090dd

Please sign in to comment.