-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #178 from MLMI2-CSSI/dev
add f.run() functionality add compatibility with Globus SDK 3 add DOI visibility to dataset summary
- Loading branch information
Showing
6 changed files
with
78 additions
and
97 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +1,14 @@ | ||
globus-sdk>=1.2.1,<=2.0.3 | ||
dlhub_sdk==0.10.0 | ||
globus-sdk>=3,<4 | ||
dlhub_sdk>=0.10.2 | ||
requests>=2.18.4 | ||
tqdm>=4.19.4 | ||
six>=1.11.0 | ||
h5py>=2.10.0 | ||
pandas==1.2.2 | ||
numpy>=1.15.4 | ||
pandas>=0.23.4 | ||
pydantic>=1.6.1 | ||
joblib>=0.16.0 | ||
mdf_forge>=0.7.6 | ||
mdf-connect-client>=0.3.8 | ||
joblib>=1.0.0 | ||
mdf_forge>=0.8.0 | ||
mdf-connect-client>=0.4.0 | ||
json2table>=1.1.5 | ||
joblib>=1.1.0 |
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,21 +6,21 @@ | |
# TODO: change dependencies to be looser | ||
setuptools.setup( | ||
name="foundry_ml", | ||
version="0.1.2", | ||
version="0.2.0", | ||
author="Aristana Scourtas, KJ Schmidt, Imogen Foster, Ribhav Bose, Zoa Katok, Ethan Truelove, Ian Foster, Ben Blaiszik", | ||
author_email="[email protected]", | ||
packages=setuptools.find_packages(), | ||
description="Package to support simplified application of machine learning models to datasets in materials science", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
install_requires=[ | ||
"mdf_forge>=0.7.6", | ||
"globus-sdk>=1.2.1,<=2.0.3", | ||
"dlhub_sdk==0.10.0", | ||
"mdf_forge>=0.8.0", | ||
"globus-sdk>=3,<4", | ||
"dlhub_sdk>=0.10.2", | ||
"numpy>=1.15.4", | ||
"pandas>=0.23.4", | ||
"pydantic>=1.4", | ||
"mdf_connect_client>=0.3.8", | ||
"mdf_connect_client>=0.4.0", | ||
"h5py>=2.10.0", | ||
"joblib>=1.0.0", | ||
"json2table" | ||
|
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