PySR / pyproject.toml
MilesCranmer's picture
feat: add `dimensionless_constants_only` with new backend
fe186d6 unverified
raw
history blame
886 Bytes
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pysr"
version = "0.18.4"
authors = [
{name = "Miles Cranmer", email = "[email protected]"},
]
description = "Simple and efficient symbolic regression"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
]
dynamic = ["dependencies"]
[tool.setuptools]
packages = ["pysr", "pysr._cli", "pysr.test"]
include-package-data = false
package-data = {pysr = ["juliapkg.json"]}
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
[tool.isort]
profile = "black"
[tool.rye]
dev-dependencies = [
"pre-commit>=3.7.0",
"ipython>=8.23.0",
]