diff --git a/setup.py b/setup.py index c47353c..7f450ef 100644 --- a/setup.py +++ b/setup.py @@ -1,58 +1,59 @@ # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . from setuptools import setup setup(name="blackdynamite", packages=['BlackDynamite', 'BlackDynamite.coating'], version="0.0.1", author="Guillaume Anciaux", author_email="guillaume.anciaux@epfl.ch", description=("Compliant parametric study tool"), package_data={ 'BlackDynamite': ['build_tables.sql']}, scripts=['scripts/canYouDigIt.py', 'scripts/cleanRuns.py', 'scripts/createDB.py', 'scripts/createJobs.py', 'scripts/createRuns.py', 'scripts/createUser.py', 'scripts/enterRun.py', 'scripts/getRunInfo.py', 'scripts/launchRuns.py', 'scripts/mvRuns.py', 'scripts/pushQuantity.py', 'scripts/saveBDStudy.py', 'scripts/updateRuns.py', 'scripts/studyInfo.py', 'scripts/bd_zeo_server.py', 'scripts/open_zodb.py', 'scripts/importFromV1DB.py', 'scripts/bash_completion.sh'], - install_requires=["psycopg2-binary", "psycopg2", "numpy", - "argcomplete", "pyparsing", "ZEO", 'tqdm', 'psutil'], + install_requires=['psycopg2-binary', 'psycopg2', 'numpy', + 'argcomplete', 'pyparsing', 'ZEO', 'tqdm', + 'psutil', 'tabulate'], test_suite="test", license=""" This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . """)