summaryrefslogtreecommitdiff
path: root/spec/fixtures/python/simple-Pipfile
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-03-31 13:28:27 -0600
committermo khan <mo.khan@gmail.com>2020-04-01 10:05:54 -0600
commit4e4462a6f2052fc7cc5ffe1b4b677ef1af1749b9 (patch)
treee52b1d2e83000aa5d4cb050fa8d2f0cc647b94be /spec/fixtures/python/simple-Pipfile
parentd6b721605bfe75d735abe80f365822075f49fa23 (diff)
Pull package info from sources in Pipfile.lock
* Exclude dependencies in "develop" group" * Install pipenv by default * Use .venv to match the default location as pipenv * Use pip-licenses to detect licenses in Pipfile project * Add variation of the MIT License * Redirect asdf install stdout to /dev/null * Add CHANGELOG entry and bump version
Diffstat (limited to 'spec/fixtures/python/simple-Pipfile')
-rw-r--r--spec/fixtures/python/simple-Pipfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/fixtures/python/simple-Pipfile b/spec/fixtures/python/simple-Pipfile
new file mode 100644
index 0000000..2a4ffeb
--- /dev/null
+++ b/spec/fixtures/python/simple-Pipfile
@@ -0,0 +1,10 @@
+[[source]]
+url = "https://pypi.python.org/simple"
+verify_ssl = true
+name = "pypi"
+
+[packages]
+requests = "*"
+
+[dev-packages]
+pytest = "*"