-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 806 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 806 Bytes
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
[project]
name = "torch_eql"
version = "0.1.0"
authors = [
{name = "Jorge Jiménez García", email = "jjimgar1@outlook.com"},
]
description = " A PyTorch implementation of Equation Learners (Georg Martius and Christoph H. Lampert, 2016)"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"torch",
"typing",
"matplotlib",
"prettytable",
"sympy",
"scikit-learn",
"pyyaml",
"tqdm",
"pandas",
"pykan",
"scipy",
"numpy<1.25.0"
]
[tool.setuptools]
packages = ["torch_eql"]
[project.scripts]
eqlcli = "torch_eql.cli:cli_call"