Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
041087e
1
Parent(s):
f4c2ae8
Add poetry dependencies file
Browse files- pyproject.toml +23 -0
pyproject.toml
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "pysr"
|
3 |
+
version = "0.12.0"
|
4 |
+
description = "Simple and efficient symbolic regression"
|
5 |
+
authors = ["MilesCranmer <[email protected]>"]
|
6 |
+
license = "Apache-2.0"
|
7 |
+
readme = "README.md"
|
8 |
+
|
9 |
+
[tool.poetry.dependencies]
|
10 |
+
python = "^3.8"
|
11 |
+
sympy = "^1.0.0"
|
12 |
+
numpy = "^1.20.0"
|
13 |
+
scikit-learn = "^1.0.0"
|
14 |
+
pandas = "^1.0.0"
|
15 |
+
julia = "^0.6.0"
|
16 |
+
|
17 |
+
[tool.poetry.group.dev.dependencies]
|
18 |
+
matplotlib = "^3.0.0"
|
19 |
+
ipython = "^8.0.0"
|
20 |
+
|
21 |
+
[build-system]
|
22 |
+
requires = ["poetry-core"]
|
23 |
+
build-backend = "poetry.core.masonry.api"
|