From a434ff9b4cece331404fe7d577e59d02db032c4e Mon Sep 17 00:00:00 2001 From: Blallo Date: Sun, 28 Apr 2019 12:31:19 +0200 Subject: [PATCH] Adding bonsai==1.1.0 --- Pipfile | 1 + Pipfile.lock | 14 +++++++++++++- setup.py | 4 ++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/Pipfile b/Pipfile index e9fbc28..560d3eb 100644 --- a/Pipfile +++ b/Pipfile @@ -13,6 +13,7 @@ pytest-cov = "*" [packages] phi = {editable = true,path = "."} pytest-asyncio = "*" +bonsai = "*" [requires] python_version = "3.6" diff --git a/Pipfile.lock b/Pipfile.lock index cb40d26..393ad80 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "660e4dfbcce659bd42d2892c6fdf865158a9d8b642d978719a55e2bfb9514eb8" + "sha256": "90d884ca057f867db8228421887357a2fcf95cc5170fc4ad0dfa0e660bf786b0" }, "pipfile-spec": 6, "requires": { @@ -58,6 +58,18 @@ ], "version": "==19.1.0" }, + "bonsai": { + "hashes": [ + "sha256:2a72fdd0574ae111b63959347622512cbf8eab867d813024386cffefc90bb6f2", + "sha256:638b221ff0034d74c84896fa49a13620a93e72efb9b6f373b46ecda073c85b34", + "sha256:cf4da3b78b58e0437ead94f653004cdf78d29f219d6d87c9a2cbe512f3a2df5d", + "sha256:df8ef71c206363e9a9668caa8fa56dcd4d9d1d024acac510288f572b4d83251b", + "sha256:e96e6a6bed6a72041dcfe8e2b1490557a78f5ba7c0d7f43b46823abbfa9853ad", + "sha256:ed8d6d86baa9a2cc48936e307db1b7b259366e1efc53c512c8aea4415aa96f83" + ], + "index": "pypi", + "version": "==1.1.0" + }, "chardet": { "hashes": [ "sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae", diff --git a/setup.py b/setup.py index b2c54d4..d55447c 100644 --- a/setup.py +++ b/setup.py @@ -13,10 +13,10 @@ setup( author_email='unit@paranoici.org', package_dir={'': 'src'}, - packages=find_packages(), + packages=find_packages("src"), entry_points={"console_scripts": ["phid=phi.app:cli"]}, setup_requires=['pytest-runner'], - install_requires=['aiohttp==2.3.8', 'click==7.0', 'pyYAML', 'ldap3'], + install_requires=['aiohttp==2.3.8', 'click==7.0', 'pyYAML', 'ldap3', 'bonsai==1.1.0'], tests_require=['pytest', 'pytest-aiohttp', 'pytest-asyncio', 'async-generator'] )