From 6300340f735d97a480c7152b9a1cb8998431f722 Mon Sep 17 00:00:00 2001 From: jonnymaserati Date: Mon, 14 Dec 2020 19:36:34 +0100 Subject: [PATCH] Update setup.py --- setup.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ed9736b..3e44de7 100644 --- a/setup.py +++ b/setup.py @@ -12,8 +12,8 @@ with open("README.md", "r") as f: long_description = f.read() -with open("requirements.txt", "r") as f: - required = f.read().splitlines() +# with open("requirements.txt") as f: +# required = f.read().splitlines() download_url = f'https://github.com/jonnymaserati/welleng/archive/v{__version__}.tar.gz' @@ -48,7 +48,16 @@ author_email='jonnycorcutt@gmail.com', license='LGPL v3', packages=find_packages(exclude=["tests"]), - install_requires=required, + install_requires=[ + 'python-fcl', + 'numpy', + 'scipy', + 'trimesh', + 'vedo', + 'vtk', + 'networkx', + 'matplotlib', + ], classifiers=[ 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', 'Operating System :: OS Independent',