forked from emma-hw/rdkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
58 lines (54 loc) · 1.65 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
[build-system]
requires = [
"scikit-build-core>=0.10",
"cmake>=3.18",
"numpy>=1.22",
"ninja; platform_system != 'Windows'",
]
build-backend = "scikit_build_core.build"
[project]
name = "rdkit-typer"
version = "2026.3.1.post0"
description = "RDKit fork with AtomTyper extensions"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "license.txt" }
authors = [{ name = "RDKit contributors" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Chemistry",
]
[project.urls]
Homepage = "https://www.rdkit.org"
Repository = "https://github.com/rdkit/rdkit"
[tool.scikit-build]
cmake.version = ">=3.18"
cmake.build-type = "Release"
build.verbose = true
wheel.packages = ["rdkit"]
[tool.scikit-build.cmake.define]
RDK_BUILD_PYTHON_WRAPPERS = "ON"
RDK_BUILD_SWIG_WRAPPERS = "OFF"
RDK_BUILD_CPP_TESTS = "OFF"
RDK_BUILD_CONTRIB = "OFF"
RDK_BUILD_PGSQL = "OFF"
RDK_BUILD_FUZZ_TARGETS = "OFF"
RDK_BUILD_LONG_RUNNING_TESTS = "OFF"
RDK_INSTALL_INTREE = "OFF"
RDK_INSTALL_DEV_COMPONENT = "OFF"
RDK_INSTALL_STATIC_LIBS = "OFF"
RDK_INSTALL_DLLS_MSVC = "ON"
RDK_BUILD_ATOMTYPER_SMOKE = "OFF"
RDK_USE_BOOST_IOSTREAMS = "OFF"
RDK_USE_BOOST_SERIALIZATION = "OFF"