forked from IBM/topography-searcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 885 Bytes
/
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
[tool.poetry]
name = "topsearch"
version = "0.0.3"
description = "A Python package for topographical analysis of machine learning models and physical systems"
license = "MIT"
authors = ["Luke Dicks <[email protected]>"]
readme = "README.md"
keywords = ["machine-learning", "chemistry", "topography", "landscapes", "explainable-ai"]
repository = "https://github.com/IBM/topography-searcher/"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
matplotlib = "^3.8.3"
networkx = "^3.2.1"
scipy = "^1.11.3"
numpy = "^1.26.1"
scikit-learn = "^1.3.2"
nptyping = "^2.5.0"
ase = "3.22.1"
rdkit = "^2023.9.4"
[tool.poetry.group.dev.dependencies]
pylint = "^3.0.2"
pytest = "^7.4.3"
flake8 = "^6.1.0"
pytest-cov = "^4.1.0"
[tool.poetry.group.ani_potential.dependencies]
torch = "^2.1.2"
torchani = "^2.2.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"