diff options
author | Théo de la Hogue | 2023-07-26 14:54:40 +0200 |
---|---|---|
committer | Théo de la Hogue | 2023-07-26 14:54:40 +0200 |
commit | 035a561f9e40f24222a1ebb643deed0248f91a13 (patch) | |
tree | c649989a15a6ecfd48869817e31f5cebb11bd7ef | |
parent | a9610567c856abf1799eec117ecb2386b9fe9b82 (diff) | |
download | argaze-035a561f9e40f24222a1ebb643deed0248f91a13.zip argaze-035a561f9e40f24222a1ebb643deed0248f91a13.tar.gz argaze-035a561f9e40f24222a1ebb643deed0248f91a13.tar.bz2 argaze-035a561f9e40f24222a1ebb643deed0248f91a13.tar.xz |
Adding scipy as requirement.
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ setup( packages=find_packages(where='src'), python_requires='>=3.11', - install_requires=['opencv-python>=4.7.0', 'opencv-contrib-python>=4.7.0', 'numpy', 'pandas', 'matplotlib', 'shapely', 'lempel_ziv_complexity'], + install_requires=['opencv-python>=4.7.0', 'opencv-contrib-python>=4.7.0', 'numpy', 'pandas', 'matplotlib', 'shapely', 'lempel_ziv_complexity', 'scipy'], project_urls={ 'Bug Reports': 'https://git.recherche.enac.fr/projects/argaze/issues', |