-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (35 loc) · 938 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (35 loc) · 938 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
38
39
40
41
42
43
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "seq2cause"
version = "0.1.5"
readme = "README.md"
description = "Sample- And Population-Level Causal Discovery from Event Sequences using Autoregressive Models"
requires-python = ">=3.8,<4"
authors = [
{ name = "Hugo Math", email = "hugo.math@gmail.com" },
]
keywords = ["causal-discovery", "transformers", "sequences", "autoregressive models", "event-sequences", "interpretability"]
license = { text = "MIT" }
dependencies = [
"transformers>=4.24.0",
"pyarrow<17",
"numpy<2.0",
"torch",
"accelerate",
"datasets>2.20.0",
"seaborn",
"captum",
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
"pre-commit",
"pytest-cov" # For coverage reports
]
[project.urls]
"Homepage" = "https://github.com/Mathugo/seq2cause"
[tool.hatch.build.targets.wheel]
packages = ["src/seq2cause"]