Spaces:
Running
Running
File size: 847 Bytes
725c510 e373739 725c510 e373739 725c510 e373739 725c510 e373739 976f8d8 |
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 |
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pysr"
version = "0.17.0"
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.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
]
dynamic = ["dependencies"]
[tool.setuptools]
packages = ["pysr"]
include-package-data = false
package-data = {pysr = ["../datasets/*"]}
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
[tool.setuptools_scm]
write_to = "pysr/version.py"
[tool.isort]
profile = "black"
|