diff options
Diffstat (limited to 'site')
-rw-r--r-- | site/dev-requirements.txt | 3 | ||||
-rw-r--r-- | site/tasks.py | 19 |
2 files changed, 0 insertions, 22 deletions
diff --git a/site/dev-requirements.txt b/site/dev-requirements.txt deleted file mode 100644 index 524b8060..00000000 --- a/site/dev-requirements.txt +++ /dev/null @@ -1,3 +0,0 @@ -invoke>=0.6.1 -invocations>=0.4.4 -sphinx==1.1.3 diff --git a/site/tasks.py b/site/tasks.py deleted file mode 100644 index e2d952b1..00000000 --- a/site/tasks.py +++ /dev/null @@ -1,19 +0,0 @@ -from invoke import Collection -from invocations import docs, testing - -# TODO: let from_module specify new name -api = Collection.from_module(docs) -# TODO: maybe allow rolling configuration into it too heh -api.configure({ - 'sphinx.source': 'api', - 'sphinx.target': 'api/_build', -}) -api.name = 'api' -site = Collection.from_module(docs) -site.name = 'site' -site.configure({ - 'sphinx.source': 'site', - 'sphinx.target': 'site/_build', -}) - -ns = Collection(testing.test, api=api, site=site) |