-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (70 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (70 loc) · 2.11 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "cython>=3.0", "numpy>=2.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["SRToolkit*"]
[tool.setuptools.package-data]
SRToolkit = ["py.typed", "utils/_eval_cython.pyx"]
[project]
name = "symbolic-regression-toolkit"
version = "1.6.0"
description = "Symbolic Regression/Equation Discovery Toolkit"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GPL-3.0-only"}
authors = [
{ name = "Sebastian Mežnar", email = "smeznar@gmail.com" }
]
keywords = [
"symbolic regression",
"equation discovery",
"parameter estimation",
"machine learning"
]
dependencies = [
"numpy>=2.0",
"scipy",
"sympy",
"zss",
"editdistance",
"tqdm",
"typing_extensions>=4.0",
"platformdirs",
"packaging"
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics"
]
[project.optional-dependencies]
approaches = ["torch>=2.0", "pymoo"]
dev = ["pytest", "pytest-cov", "ruff", "mypy", "pre-commit", "cython>=3.0"]
[project.urls]
Homepage = "https://github.com/smeznar/SymbolicRegressionToolkit"
Documentation = "https://smeznar.github.io/SymbolicRegressionToolkit/"
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=SRToolkit/approaches/EDHiE.py --ignore=SRToolkit/utils/_eval_cython.py --cov-report=term-missing"
doctest_optionflags = ["NORMALIZE_WHITESPACE"]
testpaths = ["SRToolkit", "tests"]
markers = [
"benchmark: tests requiring downloaded benchmark data (run with: pytest tests/)",
]
filterwarnings = [
"ignore:Symbol library not provided",
]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "NPY201"]
ignore = ["E501"]
[tool.mypy]
ignore_missing_imports = true
[tool.coverage.run]
source = ["SRToolkit"]