-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (66 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
75 lines (66 loc) · 1.56 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "torch_molecule"
version = "0.1.7"
description = "Deep learning packages for molecular discovery with a simple sklearn-style interface"
authors = [{name = "Gang Liu", email = "gliu7@nd.edu"}]
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"torch>=2.2.0",
"torch-geometric>=2.6.1",
"numpy",
"huggingface_hub>=0.22.2",
"joblib>=1.3.2",
"networkx>=3.2.1",
"rdkit>=2023.9.5",
"scikit_learn>=1.2.2",
"scipy>=1.14.1",
"tqdm>=4.66.2",
"optuna>=4.0.0",
]
[project.urls]
"Homepage" = "https://github.com/liugangcode/torch-molecule"
"Bug Tracker" = "https://github.com/liugangcode/torch-molecule"
"Documentation" = "https://liugangcode.github.io/torch-molecule/"
[tool.setuptools.packages.find]
include = ["torch_molecule*"]
exclude = [
"private*",
"tests*",
"old_*.py",
"**/old_*.py"
]
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.package-data]
"torch_molecule" = [
"**/*.yaml",
"**/*.json",
"datasets/data/*",
]
[tool.pytest.ini_options]
addopts = "--verbose"
testpaths = ["tests"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black",
"isort",
"flake8",
]
[tool.black]
line-length = 100
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 100