-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5dec89b
commit 112bebf
Showing
3 changed files
with
7 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,19 +6,14 @@ | |
Ensure that this file is available on the bfabric exec host. | ||
Copyright (C) 2014-2023 Functional Genomics Center Zurich ETHZ|UZH. All rights reserved. | ||
Copyright (C) 2014-2024 Functional Genomics Center Zurich ETHZ|UZH. All rights reserved. | ||
Authors: | ||
Christian Panse <[email protected]> | ||
Maria d'Errico <[email protected]> | ||
Licensed under GPL version 3 | ||
$Id: setup.py 2997M 2017-08-21 13:04:42Z (local) $ | ||
$HeadURL: http://fgcz-svn.uzh.ch/repos/scripts/trunk/linux/bfabric/apps/python/setup.py $ | ||
$Date: 2017-08-21 15:04:42 +0200 (Mon, 21 Aug 2017) $ | ||
$Revision: 2627 $ | ||
""" | ||
|
||
from setuptools import setup, find_packages | ||
|
@@ -42,7 +37,7 @@ | |
author_email = '[email protected]', | ||
license = 'GPLv3 / apache 2.0', | ||
packages = ['bfabric'], | ||
python_requires = ">=3.7", | ||
python_requires = ">=3.9", | ||
install_requires = INSTALL_REQUIRES, | ||
scripts = [ | ||
'bfabric/scripts/bfabric_flask.py', | ||
|
@@ -70,3 +65,4 @@ | |
'bfabric/scripts/bfabric_save_workflowstep.py' | ||
], | ||
zip_safe=True) | ||
|