diff options
author | Frederick Muriuki Muriithi | 2022-09-08 06:21:26 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-09-08 06:21:26 +0300 |
commit | 38af157b22566cf2bc28d69ac1d18c878321e607 (patch) | |
tree | 51988e6162e6f816b4a4e1e1460547df7bfb8af1 | |
parent | ae1fbc0c56c8732fb85b555eccd4fddb5d8e5437 (diff) | |
download | gn-uploader-38af157b22566cf2bc28d69ac1d18c878321e607.tar.gz |
Update dependencies
* guix.scm: reorganise the dependencies
* setup.cfg: change the `install_requires` values
-rw-r--r-- | guix.scm | 6 | ||||
-rw-r--r-- | setup.cfg | 6 |
2 files changed, 7 insertions, 5 deletions
@@ -37,13 +37,13 @@ (when tests? (invoke "pytest"))))))) (inputs - (list python-mypy + (list redis + python-mypy python-pylint python-pytest python-hypothesis)) (propagated-inputs - (list redis - python-redis + (list python-redis python-flask python-jsonpickle python-mysqlclient)) @@ -14,8 +14,10 @@ packages = scripts quality_control install_requires = - rq - python-magic + redis + Flask + jsonpickle + mysqlclient exclude = tests* include_package_data = True |