From 7385b1fc1cda0bf347187c450d097bb1f4aac2d7 Mon Sep 17 00:00:00 2001 From: Dorian Pula Date: Wed, 28 Jun 2017 08:46:52 -0400 Subject: [PATCH] Add Pipfiles for use with the pipenv tool. --- Pipfile | 13 ++++++++++++ Pipfile.lock | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 Pipfile create mode 100644 Pipfile.lock diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..7d8ffe4 --- /dev/null +++ b/Pipfile @@ -0,0 +1,13 @@ +[[source]] +url = "https://pypi.python.org/simple" +verify_ssl = true + +[packages] +Cython = "*" +Kivy = "*" +buildozer = "*" +PyInstaller = "*" +colorama = "*" +sh = "*" +Jinja2 = "*" +enum34 = "*" diff --git a/Pipfile.lock b/Pipfile.lock new file mode 100644 index 0000000..fe365d8 --- /dev/null +++ b/Pipfile.lock @@ -0,0 +1,56 @@ +{ + "_meta": { + "hash": { + "sha256": "d67ac0f5c31227e4111fc2df63ec29a08db6332abf14231ba0cba849871b632d" + }, + "requires": {}, + "sources": [ + { + "url": "https://pypi.python.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "buildozer": { + "version": "==0.33" + }, + "colorama": { + "version": "==0.3.9" + }, + "cython": { + "version": "==0.25.2" + }, + "enum34": { + "version": "==1.1.6" + }, + "jinja2": { + "version": "==2.9.6" + }, + "kivy": { + "version": "==1.10.0" + }, + "markupsafe": { + "version": "==1.0" + }, + "pexpect": { + "version": "==4.2.1" + }, + "ptyprocess": { + "version": "==0.5.2" + }, + "pyinstaller": { + "version": "==3.2.1" + }, + "setuptools": { + "version": "==36.0.1" + }, + "sh": { + "version": "==1.12.14" + }, + "virtualenv": { + "version": "==15.1.0" + } + }, + "develop": {} +}