generated from AutoResearch/autora-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (34 loc) · 924 Bytes
/
pyproject.toml
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
36
37
38
39
40
41
42
43
[project]
name = "autora-theorist-bsr"
description = "Bayesian Symbolic Regression theorist for AutoRA"
authors = [
{ name = "Sida (Star) Li", email = "[email protected]" },
]
dynamic = ["version"]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8,<4"
dependencies = [
"autora-core",
"scikit-learn",
"scipy",
]
[project.optional-dependencies]
dev = [
"autora-core[dev]"
]
[tool.isort]
profile = "black"
[tool.mypy]
mypy_path="./src"
[[tool.mypy.overrides]]
module = ["matplotlib.*", "sklearn.*", "pandas.*", "numpy.*","scipy.*"]
ignore_missing_imports=true
[project.urls]
homepage = "http://www.empiricalresearch.ai"
repository = "https://github.com/AutoResearch/autora-theorist-bsr"
documentation = "https://autoresearch.github.io/autora/"
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]