-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
60 lines (55 loc) · 1.86 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ns-scmmab"
version = "1.0.0"
description = "Non-Stationary Structural Causal Multi-Armed Bandits"
readme = "README.md"
authors = [
{name = "Yeahoon Kwon", email = "dataofyou@snu.ac.kr"},
{name = "Yesong Choe", email = "yesong@snu.ac.kr"},
{name = "Soungmin Park", email = "tjdals0653@snu.ac.kr"},
{name = "Neil Dhir", email = "neil.dhir@focused-energy.co"},
{name = "Sanghack Lee", email = "sanghack@snu.ac.kr"}
]
license = {text = "MIT"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["causal inference", "multi-armed bandits", "structural causal models", "non-stationary"]
dependencies = [
"numpy>=1.21.2",
"scipy>=1.7.1",
"networkx>=2.6.3",
"joblib>=1.0.1",
"matplotlib>=3.4.3",
"seaborn>=0.11.2",
"tqdm>=4.62.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=3.0.0",
"black>=22.0.0",
"flake8>=4.0.0",
"mypy>=0.950",
]
[project.urls]
Homepage = "https://github.com/yeahoon-k/NS-SCMMAB"
Documentation = "https://github.com/yeahoon-k/NS-SCMMAB#readme"
Repository = "https://github.com/yeahoon-k/NS-SCMMAB"
"Bug Tracker" = "https://github.com/yeahoon-k/NS-SCMMAB/issues"
Paper = "https://openreview.net/pdf?id=F4LhOqhxkk"
"Conference Page" = "https://neurips.cc/virtual/2025/loc/san-diego/poster/119070"
"Blog Post" = "https://yeahoon-k.github.io/ns-scb-explainer/"
[tool.setuptools]
packages = ["src"]