-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.75 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
[build-system]
requires = [
"setuptools>=68",
"setuptools_scm",
"wheel",
"meson",
"ninja",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
maintainers = [
{name = "Zurab Khasidashvili", email = "zurab.khasidashvili@gmail.com"},
{name = "Konstantin Korovin", email = "kostyakor@gmail.com"},
{name = "Franz Brauße", email = "fbrausse@paxle.org"},
{name = "Dmitry Messerman", email = "dmitry.messerman@gmail.com"}
]
name = "smlptech"
dynamic = ["version"]
description = "SMLP - The Symbolic Machine Learning Prover"
license = "Apache-2.0"
license-files = [
"LICENSE",
"AUTHORS",
]
readme = "README.md"
requires-python = "==3.11.*"
dependencies = [
"doepy",
"jenkspy",
"keras-tuner",
"matplotlib",
"mrmr-selection",
"pandas",
"pycaret",
"pyDOE",
"pysubgroup==0.8.0",
"scikit-learn==1.4.2",
"scipy",
"seaborn",
"tensorflow==2.15.1",
]
[project.urls]
homepage = "https://github.com/SMLP-Systems/smlp"
[project.scripts]
smlp = "smlp.run_smlp:main2"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["*"]
# ---------------------------------------------------------------------------
# Build-time environment variables (all optional)
# ---------------------------------------------------------------------------
# BOOST_ROOT Reuse an existing Boost prefix, skips download + compile.
# e.g. export BOOST_ROOT=~/.local/boost_py313
# BOOST_CACHE_DIR Where to cache compiled Boost (default: ~/.local/boost_py313).
# BOOST_VERSION Boost version to download (default: 1.83.0).
# GMP_ROOT Path to prefix of an existing GMP installation.
# KAY_DIR Path to an existing kay checkout.
# Z3_PREFIX Path to existing installation of Z3.