-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (39 loc) · 1004 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
44
45
46
47
[project]
# UPDATE THIS BEFORE PUBLISHING
name = "equation_tree"
description = "Describe your contribution"
authors = [{ name = "Younes Strittmatter", email = "[email protected]" }]
dynamic = ["version"]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8,<4"
# ADD NEW DEPENDENCIES HERE
dependencies = [
"numpy",
"sympy",
"importlib_resources",
"tqdm",
"pandas",
"pyyaml"
]
[project.optional-dependencies]
dev = [
]
docs = [
"mkdocs-material",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
"mkdocs-multirepo-plugin",
"mkdocstrings-python",
"mkdocs-jupyter",
"pymdown-extensions",
]
[project.urls]
homepage = "http://www.empiricalresearch.ai"
repository = "https://github.com/AutoResearch/equation-tree"
documentation = "https://autoresearch.github.io/autora/"
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]