-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
46 lines (40 loc) · 1.15 KB
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["coba", "coba.environments", "coba.learners", "coba.evaluators", "coba.experiments", "coba.pipes", "coba.context", "coba.results"]
[tool.setuptools.dynamic]
version = {attr = "coba.__version__"}
[project]
name = "coba"
dynamic = ["version"]
authors = [
{name = "Mark Rucker", email = "rucker.mark@gmail.com"},
]
description = "A contextual bandit research package"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "BSD-3-Clause"}
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering"
]
[project.urls]
Homepage = "https://coba-docs.readthedocs.io/"
Documentation = "https://coba-docs.readthedocs.io/"
Repository = "https://github.com/vowpalwabbit/coba"
[project.entry-points."coba.register"]
coba = "coba.register"
[project.optional-dependencies]
full = [
"vowpalwabbit",
"pandas",
"matplotlib",
"numpy",
"scipy",
"cloudpickle",
"torch"
]