forked from artsy/hokusai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
52 lines (48 loc) · 1.08 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
pyinstaller = "==3.3.1"
twine = "*"
wheel = "*"
ipython = "*"
ipdb = "*"
jupyter = "*"
# Tornado (required by jupyter) project is using
# an incompatible setup.py
# https://github.com/pypa/pipenv/issues/2498
singledispatch = "*"
backports-abc = "*"
futures = "*"
nbformat = "==4.4.0"
pylint = "*"
[packages]
boto3 = "==1.9.162"
botocore = "==1.12.162"
click = "==6.7"
click-repl = "==0.1.6"
docutils = "==0.14"
futures = "==3.2.0"
jmespath = "==0.9.4"
pyparsing = "==2.4.0"
python-dateutil = "==2.8.0"
s3transfer = "==0.2.1"
six = "==1.12.0"
termcolor = "==1.1.0"
urllib3 = "==1.25.3"
wcwidth = "==0.1.7"
httpretty = "==0.8.14"
mock = "==2.0.0"
Jinja2 = "==2.10.1"
MarkupSafe = "==1.1.1"
prompt_toolkit = "==1.0.16"
PyYAML = "==3.13"
hokusai = {path = ".",editable = true}
[requires]
python_version = "2.7"
[scripts]
test = "python -m unittest"
tests = "python -m unittest discover test"
unit-tests = "python -m unittest discover test.unit"
integration-tests = "python -m unittest discover test.integration"