-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (93 loc) · 2.34 KB
/
pyproject.toml
File metadata and controls
103 lines (93 loc) · 2.34 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "ChemLogic"
version = "0.1.2"
description = "ChemLogic is a neurosymbolic framework that integrates relational logic syntax with various graph neural network (GNN) architectures to model chemical knowledge. It encodes functional groups and molecular subgraph patterns into a differentiable, explainable architecture, enabling the construction of interpretable and modular GNN-based models for chemical reasoning."
authors = [
{name = "Kai Hodzic", email = "hodzic.e.k@outlook.com"},
]
requires-python = ">=3.11"
dependencies = [
"neuralogic==0.8.0",
"optuna>=4.3.0",
"scikit-learn>=1.6.1",
"RDKit>=2025.3.2",
"pysmiles>=2.0.0",
"torch-geometric>=2.6.1",
"mlflow>=2.14.0",
"torch>=2.7.1",
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Information Analysis",
"Operating System :: OS Independent"
]
keywords = [
"chemistry",
"differentiable",
"knowledge base",
"graph neural network",
"GNN",
"neurosymbolic",
"explainable",
"molecule",
"property",
"molecular property prediction",
"functional group",
"logic",
"logic programming",
"relational",
"relational logic",
"cheminformatics"
]
[project.urls]
Homepage = "https://github.com/erhc/ChemLogic"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = ["E501"]
[tool.pdm]
package-dir = "src"
distribution = true
[tool.pdm.scripts]
test = "pytest"
lint = "ruff check src/ --fix"
format = "ruff format"
prepare = {composite = ["lint", "format", "test"]}
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-mock>=3.12.0",
"ipython>=9.0.0",
"ipykernel>=7.0.0",
"ruff>=0.9.10",
"nbconvert==7.16.6",
"pdm-bump>=0.9.12",
"pytest-xdist>=3.8.0",
]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
]