Skip to content

Commit

Permalink
Now scripts are created.
Browse files Browse the repository at this point in the history
  • Loading branch information
strichter committed Jun 19, 2007
1 parent c205398 commit 9235f6b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion buildout.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[buildout]
parts = test
parts = test scripts
develop = .

[test]
recipe = zc.recipe.testrunner
eggs = z3c.rml [test]

[scripts]
recipe = zc.recipe.egg
eggs = z3c.rml [pagetemplate]
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
'zope.interface',
'zope.schema',
],
entry_points = """
[console_scripts]
dtd = z3c.rml.dtd:generate
reference = z3c.rml.reference:main
""",
entry_points = {
'console_scripts': [
'dtd = z3c.rml.dtd:generate',
'reference = z3c.rml.reference:main'],
},
dependency_links = ['http://download.zope.org/distribution']
)

0 comments on commit 9235f6b

Please sign in to comment.