-
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.
GIT: update the package requirements
- Loading branch information
1 parent
06ea887
commit ecc60ee
Showing
4 changed files
with
43 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
numpy==1.24.3 | ||
pandas==1.5.3 | ||
plotly==5.16.1 | ||
prolif==2.0.1 | ||
PyYAML==6.0 | ||
rdkit==2023.3.1 | ||
scikit_learn==1.3.2 | ||
Sophia==0.1.1 | ||
torch | ||
tqdm==4.64.1 | ||
wandb==0.15.4 |
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,19 +1,22 @@ | ||
from distutils.core import setup | ||
from setuptools import setup | ||
|
||
# Reading long description from README.md file | ||
with open("README.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
|
||
with open("ChemSpaceAL/requirements.txt") as f: | ||
required = f.read().splitlines() | ||
|
||
setup( | ||
name="ChemSpaceAL", | ||
packages=["ChemSpaceAL"], | ||
version="1.0.3", | ||
version="1.0.0", | ||
description="ChemSpaceAL Python package: an efficient active learning methodology applied to protein-specific molecular generation", | ||
install_requires=[ | ||
# "prolif==2.0.0.post1", | ||
# "rdkit==2023.3.3", | ||
# "wandb==0.15.10", | ||
], | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author="Gregory W. Kyro, Anton Morgunov & Rafael I. Brent", | ||
author_email="[email protected]", | ||
url="https://github.com/gregory-kyro/ChemSpaceAL/tree/main", | ||
url="https://github.com/batistagroup/ChemSpaceAL", | ||
download_url="https://github.com/gregory-kyro/ChemSpaceAL/archive/refs/tags/v1.0.3.tar.gz", | ||
keywords=[ | ||
"active learning", | ||
|
@@ -23,5 +26,11 @@ | |
"molecular generation", | ||
"drug discovery", | ||
], | ||
classifiers=[], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
install_requires=required, | ||
python_requires=">=3.10", | ||
) |