From cf5d377149d28e28c872e5ce2bdc85b21972260e Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 4 Feb 2018 05:21:14 +0100 Subject: Add Pipfile Hey, this is new. First time not using `requirements.txt` for dependencies in a Python project. Need to add 'requests', so figured we should be tracking our dependencies. Add 'selenium' to the package list since we're already using and need it. --- Pipfile | 14 ++++++++++++++ Pipfile.lock | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 Pipfile create mode 100644 Pipfile.lock diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..36cbe84 --- /dev/null +++ b/Pipfile @@ -0,0 +1,14 @@ +[[source]] + +url = "https://pypi.python.org/simple" +verify_ssl = true +name = "pypi" + + +[packages] + +selenium = "==3.8.1" + + +[dev-packages] + diff --git a/Pipfile.lock b/Pipfile.lock new file mode 100644 index 0000000..9bbd763 --- /dev/null +++ b/Pipfile.lock @@ -0,0 +1,39 @@ +{ + "_meta": { + "hash": { + "sha256": "98da86ad8bb491ff274d4a5d67b37b88fe8759a9a80d476f0b23190d8956cd76" + }, + "host-environment-markers": { + "implementation_name": "cpython", + "implementation_version": "3.6.4", + "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.4", + "python_version": "3.6", + "sys_platform": "darwin" + }, + "pipfile-spec": 6, + "requires": {}, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.python.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "selenium": { + "hashes": [ + "sha256:5acb9cdbc2d1a7fbb3e16a8ce9246211cc371f0367ad9c6bc2273cca60a6b045", + "sha256:9abd2dbd4a5e9b778483ce7e5adf1ea9364fcbc29da488e979213c825a1515d3" + ], + "version": "==3.8.1" + } + }, + "develop": {} +} -- cgit v1.2.3