-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
22 lines (18 loc) · 849 Bytes
/
Copy pathpyproject.toml
File metadata and controls
22 lines (18 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tool.poetry]
name = "causal-methodologies-analysis"
version = "0.1.0"
description = "This package uses multiple open-source packages in Python designed, or can be use, to analyse quasi-experiments. The analyst can use the package to benchmark the performance of these algorithms and packages on bias and coverage under different assumptions for the behaviour of the causal effect of the intervention."
authors = ["Raphael Tamaki <raphaeltamaki@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
fastexcel = "0.12.0"
kaggle = "^1.6.14"
polars = { version = "^1.2", markers = "sys_platform != 'darwin'" }
polars-lts-cpu = { version = "^1.2", markers = "sys_platform == 'darwin'" }
pytest = "^8.3.3"
python = "^3.9"
xlsxwriter = "3.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"