-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (66 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
74 lines (66 loc) · 1.25 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "stacked_eventstudy"
version = "0.1.0"
description = "Stacked event-study estimation with rolling-window controls."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"numpy",
"pandas",
"pyfixest>=0.50.1,<0.51",
"scipy",
"statsmodels",
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.optional-dependencies]
dev = [
"pytest",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py313"
fix = true
[tool.ruff.lint]
select = ["ALL"]
extend-ignore = [
"COM812",
"D",
"EM101",
"EM102",
"ISC001",
"PD901",
"PLR0913",
"PLR0915",
"S101",
"TC001",
"TC002",
"TC003",
"TRY003",
]
pydocstyle.convention = "google"
[tool.pyproject-fmt]
column_width = 88
max_supported_python = "3.14"
table_format = "long"
collapse_tables = ["tool.hatch"]
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.dependencies]
numpy = "*"
pandas = "*"
pytest = "*"
python = ">=3.13,<3.15"
scipy = "*"
statsmodels = "*"
ruff = ">=0.15.11,<0.16"
pre-commit = ">=4.6.0,<5"
gh = ">=2.91.0,<3"