Start making it a real project

This commit is contained in:
Jeff Forcier 2013-11-06 17:24:47 -08:00
parent 6046bf251c
commit 5d0717b7de
3 changed files with 32 additions and 0 deletions

4
dev-requirements.txt Normal file
View file

@ -0,0 +1,4 @@
invoke>=0.5.1
invocations>=0.4.0
spec>=0.11.1
sphinx>=1.1

7
tasks.py Normal file
View file

@ -0,0 +1,7 @@
from invocations import docs
from invocations.testing import test
from invocations.packaging import release
from invoke import Collection
ns = Collection(test, release, docs)

21
tests/changelog.py Normal file
View file

@ -0,0 +1,21 @@
from spec import Spec, skip
class Changelog(Spec):
class releases:
"""
Organization of issues into releases
"""
pass
class nodes:
"""
Expansion/extension of docutils nodes
"""
pass
class fullstack:
"""
End-to-end integration tests
"""
pass