-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (56 loc) · 1.53 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
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
[tool.poetry]
name = "wildboottest"
version = "0.3.2"
description = "Wild Cluster Bootstrap Inference for Linear Models in Python"
authors = [
"Alexander Fischer <[email protected]>",
"Aleksandr Michuda <[email protected]>"
]
maintainers= [
"Aleksandr Michuda <[email protected]>",
"Alexander Fischer <[email protected]>"
]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
readme = "README.md"
repository="https://github.com/s3alfisc/wildboottest"
[tool.poetry.dependencies]
python=">=3.8,<4.0"
numba=">=0.57"
numpy=">=1.18"
pandas=">=1.4"
statsmodels=">=0.13"
tabulate = ">=0.9.0"
[tool.poetry.dev-dependencies]
pytest = ">=7.0.0"
poetry = ">=1.4.2"
numba=">=0.57"
numpy=">=1.22"
pandas=">=1.4"
statsmodels=">=0.13"
tabulate = ">=0.9.0"
mkdocs-material = "^8.5.10"
mkdocstrings = "^0.19.0"
poetry-dynamic-versioning = "^0.21.1"
pymdown-extensions = ">=10.0"
[tool.poetry.group.dev.dependencies]
mkdocstrings-python-legacy = "^0.2.3"
mkdocstrings = {version = "^0.19.0", extras = ["python"], optional = true }
pymdown-extensions = ">=10.0"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
pymdown-extensions = ">=10.0"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
pymdown-extensions = ">=10.0"
[tool.poetry-dynamic-versioning.substitution]
folders = [
{path = "wildboottest"}
]