Skip to content

Commit 9a19e5f

Browse files
committed
Add pipfile generation
1 parent 974359d commit 9a19e5f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

templates/install_pipenv.jj2

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[[source]]
2+
url = 'https://pypi.python.org/simple'
3+
verify_ssl = true
4+
name = 'pypi'
5+
6+
[requires]
7+
python_version= '3.6'
8+
9+
[packages]
10+
{% for dependency in dependencies: %}
11+
{% if '=' in dependency %}
12+
{{dependency}}
13+
{% else %}
14+
{{dependency}} = "*"
15+
{% endif %}
16+
{% endfor %}
17+

0 commit comments

Comments
 (0)