-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.23 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
53
54
55
56
[project]
name = "molexpress"
description = "Graph Neural Networks for molecules with Keras 3."
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
authors = [
{ name = "Alexander Kensert", email = "[email protected]" },
]
keywords = [
"python",
"keras-3",
"machine-learning",
"deep-learning",
"graph-neural-networks",
"graph-convolutional-networks",
"graphs",
"molecules",
"chemistry",
"cheminformatics",
"bioinformatics",
]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
requires-python = ">=3.9"
dependencies = ["rdkit>=2023.9.5", "keras>=3", "numpy"]
[project.optional-dependencies]
dev = ["ruff", "isort"]
[project.urls]
homepage = "https://github.com/compomics/molexpress"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "molexpress.__version__" }
[tool.setuptools.packages.find]
include = ["molexpress*"]
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 99
target-version = 'py39'
[tool.ruff.format]
docstring-code-format = true