-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.21 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
[project]
name = "molcraft"
description = "Graph Neural Networks for Molecular Machine Learning"
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
authors = [
{name = "Alexander Kensert", email = "alexander.kensert@gmail.com"}
]
keywords = [
"python",
"machine-learning",
"deep-learning",
"graph-neural-networks",
"molecular-machine-learning",
"molecular-graphs",
"computational-chemistry",
"computational-biology"
]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
requires-python = ">=3.10"
dependencies = [
"tensorflow>=2.16,<2.21",
"rdkit>=2023.9.5",
"pandas>=1.0.3",
"ipython>=8.12.0",
"scikit-learn>=1.7.0"
]
[project.optional-dependencies]
gpu = ["tensorflow[and-cuda]>=2.16,<2.21"]
[tool.setuptools.dynamic]
version = { attr = "molcraft.__version__" }
[project.urls]
Homepage = "https://github.com/compomics/molcraft"
[tool.setuptools.packages.find]
include = ["molcraft*"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true