From c708a0af7d46a4acaf41046977ab87fe569e63b7 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 26 Sep 2017 09:23:00 -0400 Subject: [PATCH] pipfile > requirements.txt Signed-off-by: Kenneth Reitz --- Pipfile | 9 +++++++++ Pipfile.lock | 52 ++++++++++++++++++++++++++++++++++++++++++++++++ requirements.txt | 1 - 3 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 Pipfile create mode 100644 Pipfile.lock delete mode 100644 requirements.txt diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..061134c --- /dev/null +++ b/Pipfile @@ -0,0 +1,9 @@ +[[source]] +url = "https://pypi.python.org/simple" +verify_ssl = true +name = "pypi" + +[dev-packages] + +[packages] +"bob-builder" = "==0.0.13" \ No newline at end of file diff --git a/Pipfile.lock b/Pipfile.lock new file mode 100644 index 0000000..b3d436d --- /dev/null +++ b/Pipfile.lock @@ -0,0 +1,52 @@ +{ + "_meta": { + "hash": { + "sha256": "36d17c46a8b1b844b3cae475f6f42d6c0a9e59b2a9685cbcdc0985656a7a129f" + }, + "host-environment-markers": { + "implementation_name": "cpython", + "implementation_version": "3.6.2", + "os_name": "posix", + "platform_machine": "x86_64", + "platform_python_implementation": "CPython", + "platform_release": "16.7.0", + "platform_system": "Darwin", + "platform_version": "Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64", + "python_full_version": "3.6.2", + "python_version": "3.6", + "sys_platform": "darwin" + }, + "pipfile-spec": 6, + "requires": {}, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.python.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "bob-builder": { + "hashes": [ + "sha256:b4de49a8e436fcaf82236ea43f78413b4a4c92100726e382ab57b6bdfb38fe64", + "sha256:288e3e765c4890fe9a63ae52ac6b4a963c13fe508482c70ff701a5ae21b9a673" + ], + "version": "==0.0.13" + }, + "boto": { + "hashes": [ + "sha256:13be844158d1bd80a94c972c806ec8381b9ea72035aa06123c5db6bc6a6f3ead", + "sha256:deb8925b734b109679e3de65856018996338758f4b916ff4fe7bb62b6d7000d1" + ], + "version": "==2.48.0" + }, + "docopt": { + "hashes": [ + "sha256:49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491" + ], + "version": "==0.6.2" + } + }, + "develop": {} +} diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 1d64dbd..0000000 --- a/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -bob-builder==0.0.13