-
Notifications
You must be signed in to change notification settings - Fork 49
/
pyproject.toml
52 lines (46 loc) · 1.22 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
[project]
name = "molSimplify"
version = "v1.7.5"
license = {file = "LICENSE"}
readme = "README.md"
dependencies = [
"openbabel-wheel",
"numpy",
"scipy",
"pandas",
"networkx>=2.7",
"scikit-learn",
"keras",
"tensorflow",
"pyyaml",
"importlib-resources",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-resource-path", "pre-commit"]
docs = [
"beautifulsoup4",
"sphinx",
"readthedocs-sphinx-ext",
"sphinx_rtd_theme",
]
[project.urls]
Homepage = "https://molsimplify.mit.edu/"
Documentation = "http://hjkgrp.mit.edu/molsimplify-tutorials/"
Repository = "https://github.com/hjkgrp/molSimplify"
[project.scripts]
molsimplify = "molSimplify.__main__:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"molSimplify.Bind" = ["*.dat", "*.dict"]
"molSimplify.Cores" = ["*.dict"]
"molSimplify.Data" = ["*.dat", "*.dict"]
"molSimplify.Ligands" = ["*.dict", "*.mol", "*.smi", "*.xyz"]
"molSimplify.Substrates" = ["*.dict", "*.mol", "*.xyz"]
"molSimplify.icons" = ["*.png"]
"molSimplify.python_krr" = ["*.csv"]
"molSimplify.python_nn" = ["*.csv"]
"molSimplify.tf_nn" = ["*/*"]