forked from voronind/vk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
33 lines (29 loc) · 891 Bytes
/
Pipfile
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
[[source]]
url = "https://pypi.python.org/simple"
name = "pypi"
verify_ssl = true
[packages]
requests = "~=2.11"
[dev-packages]
ipython = "*"
ipdb = "*"
pytest = "*"
pytest-cov = "*"
pytest-flake8 = "*"
pytest-pythonpath = "*"
"flake8-comprehensions" = "~=1.2"
"flake8-quotes" = "~=0.8"
"flake8-commas" = "~=0.1"
"flake8_tuple" = "~=0.2"
Sphinx = "~=1.4"
sphinx-autobuild = "~=0.6"
[requires]
python_version = "3.5"
[scripts]
test = "pytest --exitfirst --failed-first"
fulltest = "pytest --flake8 --cov --no-cov-on-fail vk tests docs/conf.py"
# We use equivalent of "make mode":
# sphinx-build -M builder . _build
docs = "sphinx-autobuild --open-browser --port 0 --delay 1 -d docs/_build/doctrees docs docs/_build/html"
doctest = "sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest"
build-docs = "sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html"