-
Notifications
You must be signed in to change notification settings - Fork 323
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (52 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
55 lines (52 loc) · 1.24 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pysr"
version = "2.0.0a3"
authors = [
{name = "Miles Cranmer", email = "miles.cranmer@gmail.com"},
]
description = "Simple and efficient symbolic regression"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"sympy>=1.0.0,<2.0.0",
"pandas>=0.21.0,<4.0.0",
"numpy>=1.13.0,<3.0.0",
"scikit_learn>=1.0.0,<2.0.0",
"juliacall>=0.9.28,<0.9.29",
"click>=7.0.0,<9.0.0",
"typing-extensions>=4.0.0,<5.0.0",
]
[project.optional-dependencies]
docs = [
"docstring-parser>=0.17.0",
"pyyaml>=6.0.0",
]
dev = [
"coverage>=7,<8",
"beartype>=0.19,<0.23",
"ipykernel>=6,<7",
"ipython>=8,<9",
"jax[cpu]>=0.4,<0.6",
"jupyter>=1,<2",
"mypy>=1,<2",
"nbval>=0.11,<0.12",
"pandas-stubs",
"pre-commit>=3.0,<5",
"pytest-cov>=5,<7",
"pytest>=8,<9",
"tensorboard>=2,<3",
"torch>=2,<3",
"types-openpyxl",
"types-pytz",
]
[tool.isort]
profile = "black"