-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (28 loc) · 988 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
[project]
# UPDATE THIS BEFORE PUBLISHING
name = "mixture_experimentalist"
description = "The goal of this project is to examine the performance of a mixture experimentalist–a hybrid of different experimental sampling strategies–in terms of its ability to recover a ground-truth model from synthetic data."
authors = [{ name = "Marina Dubova", email = "[email protected]" }]
dynamic = ["version"]
readme = "README.md"
license = { text = "MIT license" }
requires-python = ">=3.8,<4"
# ADD NEW DEPENDENCIES HERE
dependencies = [
"autora-core",
"typing",
"numpy",
"pandas"
]
[project.optional-dependencies]
dev = [
"autora-core[dev]"
]
[project.urls]
homepage = "http://www.empiricalresearch.ai"
repository = "https://github.com/blinodelka/mixture_experimental_strategies"
documentation = "https://autoresearch.github.io/autora/"
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]