PySR / pyproject.toml
MilesCranmer's picture
Use setuptools_scm for version management
e373739 unverified
raw
history blame
847 Bytes
[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"