From f7882526b299e0e9185b1f61d3306b48d9ec28e6 Mon Sep 17 00:00:00 2001 From: Yujun Zhang Date: Wed, 29 Nov 2017 16:40:39 +0800 Subject: Use pipenv instead of pip pipenv[1] is the officially recommended Python packaging tool from Python.org[2] [1]: https://docs.pipenv.org/ [2]: https://packaging.python.org/new-tutorials/installing-and-using-packages/ It integrates pip with virtualenv and handles version management better than pip. Change-Id: I4ec6436e29d76a866b56caa609e2bcd22489ae9f Signed-off-by: Yujun Zhang --- Pipfile | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Pipfile (limited to 'Pipfile') diff --git a/Pipfile b/Pipfile new file mode 100644 index 00000000..e0cbbfe9 --- /dev/null +++ b/Pipfile @@ -0,0 +1,38 @@ +[[source]] + +url = "https://pypi.python.org/simple" +verify_ssl = true +name = "pypi" + + +[dev-packages] + +mock = "*" +pykwalify = "*" +pytest = "*" +pytest-cov = "*" +pytest-faker = "*" +pytest-mock = "*" +pip_check_reqs = "*" +pipreqs = "*" + + +[packages] + +ansible = "*" +click = "*" +connexion = "<=1.1.11" +"Jinja2" = "*" +numpy = "*" +pbr = "*" +PrettyTable = "*" +PyYAML = "*" +humanfriendly = "*" +asq = "*" +Django = "*" +requests = "*" + + +[requires] + +python_version = "2.7" \ No newline at end of file -- cgit 1.2.3-korg