forked from py-econometrics/pyfixest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (31 loc) · 1.06 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
[tool.poetry]
name = "pyfixest"
version = "0.15.1"
description = "Fast high dimensional fixed effect estimation following syntax of the fixest R package. Supports OLS, IV and Poisson regression and a range of inference procedures. Additionally, experimentally supports (some of) the regression based new Difference-in-Differences Estimators (Did2s)."
authors = ["Alexander Fischer <alexander-fischer1801@t-online.de>", "Styfen Schär"]
license = "MIT"
readme = "readme.md"
homepage = "https://s3alfisc.github.io/pyfixest/"
repository = "https://github.com/s3alfisc/pyfixest"
[tool.poetry.dependencies]
python=">=3.8,<4.0"
pandas=">=1.1.0"
numpy=">=1.19.0"
scipy=">=1.6"
formulaic = ">=0.6.6,<1.0.0"
lets-plot = "^4.0.1"
numba = "^0.58.0"
tabulate = "^0.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest="^7.0.0"
polars = ">0.20.1"
rpy2 = "^3.3.2"
pytest-xdist = "^3.5.0"
pyhdfe = ">=0.2.0"
pyarrow = "^14.0.2"
[poetry-extras]
wildboottest={ version = ">=0.2", optional = true}
polars = ">0.20.1"