Skip to content

Commit 09ea5cf

Browse files
committed
cleanup, set version
1 parent 5797f87 commit 09ea5cf

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ cd python-chebifier
1212
pip install -e .
1313
```
1414

15+
Some dependencies of `chebai-graph` cannot be installed automatically. If you want to use Graph Neural Networks, follow
16+
the instructions in the [chebai-graph repository](https://github.com/ChEB-AI/python-chebai-graph).
17+
1518
## Usage
1619

1720
### Command Line Interface

chebifier/cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
import click
55
import yaml
6-
import sys
76
from chebifier.ensemble.base_ensemble import BaseEnsemble
87
from chebifier.ensemble.weighted_majority_ensemble import WMVwithPPVNPVEnsemble, WMVwithF1Ensemble
98

chebifier/ensemble/base_ensemble.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import tqdm
55
from chebai.preprocessing.datasets.chebi import ChEBIOver50
66
from chebai.result.analyse_sem import PredictionSmoother
7-
from rdkit import Chem
87

98
from chebifier.prediction_models.base_predictor import BasePredictor
109
from chebifier.prediction_models.chemlog_predictor import ChemLogPredictor

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "chebifier"
7-
version = "0.1.0"
7+
version = "1.0.0"
88
description = "An AI ensemble model for predicting chemical classes"
99
readme = "README.md"
1010
requires-python = ">=3.9"
@@ -23,6 +23,8 @@ dependencies = [
2323
"torch",
2424
"tqdm",
2525
"rdkit",
26+
"chebai>=1.0.1",
27+
"chebai_graph @ git+https://github.com/ChEB-AI/python-chebai-graph.git"
2628
]
2729

2830
[project.scripts]

0 commit comments

Comments
 (0)