-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
48 lines (45 loc) · 1.2 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tox]
envlist = clean,build
skipsdist = true
[testenv]
envdir = {toxinidir}/.env
setenv =
PYTHONPATH=.
passenv =
*
whitelist_externals =
cmd
git
commands =
run: []
clean: cmd /c "rmdir /S /Q .cache .web_cache"
build: pelican --output output --settings {posargs:}settings.py --delete-output-directory -D
watch: pelican --output output --settings devsettings.py --delete-output-directory --autoreload []
web: python -c "from livereload.server import Server; server = Server(); server.watcher.watch('output'); server.serve(host='0.0.0.0', port={posargs:80}, root='output')"
publish: ghp-import -n {posargs:-p} -m "Update gh-pages." output
import: python import-meetup.py []
deps =
pelican==3.6.3
pygments==2.0.2
rcssmin==1.0.6
feedgenerator==1.7
jinja2==2.8
markupsafe==0.23
python-dateutil==2.4.2
pytz==2015.7
six==1.10.0
unidecode==0.4.18
webassets==0.11.1
hunter==2.0.1
livereload==2.4.0
icalendar==3.11.7
# import-meetup deps:
click<6.2
CacheControl==0.11.5
lockfile==0.12.2
requests==2.9.1
colorama==0.3.5
prompt_toolkit==0.54
python-creole==1.3.2
# publish deps:
ghp-import2==1.0.0