Skip to content

Commit 512c401

Browse files
committed
⚙️ pipenv support
1 parent 7d03487 commit 512c401

File tree

4 files changed

+233
-2
lines changed

4 files changed

+233
-2
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,8 @@ venv.bak/
105105
# mypy
106106
.mypy_cache/
107107

108+
# PyCharm
109+
.idea/
110+
111+
# Data dumps
112+
*.json

Pipfile

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[dev-packages]
7+
8+
[packages]
9+
django-bootstrap-pagination = "==1.6.3"
10+
django-crispy-forms = "==1.7.0"
11+
django-elasticsearch-dsl = "==0.4.4"
12+
elasticsearch = "==5.5.1"
13+
elasticsearch-dsl = "==5.4.0"
14+
ipaddress = "==1.0.19"
15+
python-dateutil = "==2.6.1"
16+
six = "==1.11.0"
17+
"urllib3" = "==1.21.1"
18+
Django = "==1.8"
19+
bpython = "*"
20+
21+
[requires]
22+
python_version = "2.7"

Pipfile.lock

+192
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements.txt

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
1-
Django==1.8
1+
-i https://pypi.org/simple
2+
blessings==1.6.1
3+
bpython==0.17.1
4+
certifi==2018.4.16
5+
chardet==3.0.4
6+
curtsies==0.3.0
27
django-bootstrap-pagination==1.6.3
38
django-crispy-forms==1.7.0
49
django-elasticsearch-dsl==0.4.4
5-
elasticsearch==5.5.1
10+
django==1.8
611
elasticsearch-dsl==5.4.0
12+
elasticsearch==5.5.1
13+
greenlet==0.4.13
14+
idna==2.6
715
ipaddress==1.0.19
16+
pygments==2.2.0
817
python-dateutil==2.6.1
18+
requests==2.18.4
919
six==1.11.0
20+
typing==3.6.4
1021
urllib3==1.21.1
22+
wcwidth==0.1.7

0 commit comments

Comments
 (0)