Skip to content

Commit 9db77d9

Browse files
authored
Merge pull request #48 from siddhpant/pipenv-support
Template for Pipfile generation
2 parents 974359d + 3d00c2b commit 9db77d9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

templates/Pipfile.jj2

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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 %}

0 commit comments

Comments
 (0)