-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (29 loc) · 834 Bytes
/
pyproject.toml
File metadata and controls
37 lines (29 loc) · 834 Bytes
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
[project]
# UPDATE THIS BEFORE PUBLISHING
name = "autogs-template"
description = "AutoGS Template"
authors = [{ name = "Max Mustermann", email = "[email protected]" }]
dynamic = ["version"]
readme = "README.md"
license = { text = "MIT License" }
requires-python = ">=3.8,<4"
# ADD NEW DEPENDENCIES HERE
dependencies = [
"autogs-core"
]
[project.optional-dependencies]
dev = [
"autogs-core[dev]"
]
[project.urls]
homepage = "http://www.empiricalresearch.ai"
repository = "https://github.com/AutoResearch/autogs-template"
documentation = "https://autoresearch.github.io/autogs/"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--doctest-modules --import-mode importlib"
pythonpath = "tests"