-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (69 loc) · 1.85 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
69
70
71
72
73
74
75
76
[tool.poetry]
name = "pandas-bootstrap"
version = "0.2.1"
description = "Statistical Bootstrap with Pandas made easy"
authors = ["Will Dean <[email protected]>"]
readme = "README.md"
license = "MIT"
homepage = "https://wd60622.github.io/pandas-bootstrap/"
documentation = "https://wd60622.github.io/pandas-bootstrap/"
repository = "https://github.com/wd60622/pandas-bootstrap"
packages = [
{include = "bootstrap"},
{include = "bootstrap/py.typed"}
]
classifiers = [
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Cython',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering'
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
pandas = ">=1.0.0"
joblib = "^1.1.1"
typing_extensions = { version = "*", python = "<3.10" }
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
matplotlib = "^3.7.2"
scikit-learn = "^1.3.0"
ipython = "8.8.0"
tox = "^4.12.0"
[tool.pytest.ini_options]
minversion = "6.0.0"
addopts = "-v --cov=bootstrap --cov-report=xml --cov-report=term-missing"
testpaths = [
"tests",
]
[tool.tox]
legacy_tox_ini = """
[tox]
min_version = 4.0
isolated_build = true
env_list =
py312
py311
py310
py39
py38
[testenv]
deps =
pytest
pytest-cov
commands = pytest
"""
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.3"
mkdocstrings = {extras = ["python"], version = "^0.22.0"}
mkdocs-material = "^9.1.18"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"