kopia lustrzana https://github.com/collective/icalendar
add buildout.cfg
rodzic
b16d1738a4
commit
d018322280
|
@ -0,0 +1,26 @@
|
|||
[buildout]
|
||||
develop = .
|
||||
parts +=
|
||||
test
|
||||
py
|
||||
coverage
|
||||
|
||||
[test]
|
||||
recipe = zc.recipe.testrunner
|
||||
eggs =
|
||||
icalendar[test]
|
||||
defaults = ['--auto-color', '--auto-progress']
|
||||
|
||||
[py]
|
||||
recipe = zc.recipe.egg
|
||||
interpreter = py
|
||||
eggs = ${test:eggs}
|
||||
scripts =
|
||||
|
||||
[coverage]
|
||||
recipe = collective.recipe.template
|
||||
input = inline:
|
||||
#!/bin/sh
|
||||
./bin/test --coverage ../../coverage -v --auto-progress "$@"
|
||||
output = ${buildout:directory}/bin/coverage
|
||||
mode = 755
|
2
setup.py
2
setup.py
|
@ -1,7 +1,7 @@
|
|||
import os
|
||||
import setuptools
|
||||
|
||||
version = '3.1dev'
|
||||
version = '3.1'
|
||||
shortdesc = 'iCalendar parser/generator'
|
||||
longdesc = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
|
||||
longdesc += open(os.path.join(os.path.dirname(__file__),
|
||||
|
|
Ładowanie…
Reference in New Issue