PySR / pyproject.toml
MilesCranmer's picture
Ensure that juliapkg.json is installed
ade2ab0 unverified
raw
history blame
803 Bytes
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pysr"
version = "0.17.0"
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"