Meta prep work (reqs.txt, tasks.py)
This commit is contained in:
parent
c74ff2a16e
commit
7d56ecb1a7
|
@ -5,3 +5,4 @@ dist/
|
||||||
paramiko.egg-info/
|
paramiko.egg-info/
|
||||||
test.log
|
test.log
|
||||||
docs/
|
docs/
|
||||||
|
_build
|
||||||
|
|
|
@ -5,7 +5,9 @@ python:
|
||||||
install:
|
install:
|
||||||
# Self-install for setup.py-driven deps
|
# Self-install for setup.py-driven deps
|
||||||
- pip install -e .
|
- pip install -e .
|
||||||
- pip install coveralls
|
# Dev (doc/test running) requirements
|
||||||
|
- pip install coveralls # For coveralls.io specifically
|
||||||
|
- pip install -r dev-requirements.txt
|
||||||
script: coverage run --source=paramiko test.py --verbose
|
script: coverage run --source=paramiko test.py --verbose
|
||||||
notifications:
|
notifications:
|
||||||
irc:
|
irc:
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
# For newer tasks like building Sphinx docs.
|
||||||
|
# NOTE: Requires Python >=2.6
|
||||||
|
invoke>=0.6.1
|
||||||
|
invocations>=0.4.4
|
||||||
|
sphinx>=1.1.3
|
||||||
|
alabaster>=0.1.0
|
|
@ -1,2 +0,0 @@
|
||||||
pycrypto
|
|
||||||
tox
|
|
|
@ -1,3 +0,0 @@
|
||||||
invoke>=0.6.1
|
|
||||||
invocations>=0.4.4
|
|
||||||
sphinx==1.1.3
|
|
|
@ -1,6 +1,7 @@
|
||||||
from invoke import Collection
|
from invoke import Collection
|
||||||
from invocations import docs, testing
|
from invocations import docs, testing
|
||||||
|
|
||||||
|
|
||||||
# TODO: let from_module specify new name
|
# TODO: let from_module specify new name
|
||||||
api = Collection.from_module(docs)
|
api = Collection.from_module(docs)
|
||||||
# TODO: maybe allow rolling configuration into it too heh
|
# TODO: maybe allow rolling configuration into it too heh
|
|
@ -0,0 +1,2 @@
|
||||||
|
# Not sure why tox can't just read setup.py?
|
||||||
|
pycrypto
|
Loading…
Reference in New Issue