-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
52 lines (45 loc) · 1.19 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "smiles-rnn-rl"
version = "2.0.0"
description = ""
authors = ["Hampus Gummesson Svensson <hampusgs@gmail.com>"]
readme = "README.md"
packages = [{include = "smiles_rl"}]
[tool.poetry.dependencies]
python = ">= 3.9, < 3.10"
reinvent-scoring = "^0.0.73"
reinvent-chemistry = "^0.0.51"
numpy = "^1.24.1"
dacite = "^1.7.0"
pandas = "^2.1.4"
pydantic = "^2.6.3"
requests = "^2.28.1"
rdkit = "^2023.9.5"
pathos = "^0.3.0"
scipy = "^1.10.0"
tensorboard = "^2.11.0"
scikit-learn = "^1.2.0"
reinvent-models = "^0.0.14"
PyTDC = "^0.4.17"
openeye-toolkits = {version = "^2024.1.0", source = "openeye-toolkits-src"}
torch = {version = "2.2.1+cu118", source = "pytorch-gpu-src"}
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
pytest = "^7.2.0"
matplotlib = "3.5.3"
seaborn = "^0.13.2"
ipykernel = "^6.29.4"
bokeh = "^2.2.3"
mordred = "^1.2.0"
umap-learn = "^0.5.6"
[[tool.poetry.source]]
name = "openeye-toolkits-src"
url = "https://pypi.anaconda.org/OpenEye/simple"
priority = "explicit"
[[tool.poetry.source]]
name = "pytorch-gpu-src"
url = "https://download.pytorch.org/whl/cu118"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"