-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (51 loc) · 1.45 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pwlreg"
version = "1.0.1"
description = "A scikit-learn-compatible implementation of Piecewise Linear Regression"
authors = ["John Ensley <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/ensley-nexant/pwlreg"
repository = "https://github.com/ensley-nexant/pwlreg"
documentation = "https://ensley-nexant.github.io/pwlreg"
keywords = ["piecewise regression", "scikit-learn", "sklearn", "change point"]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.24.1"
scikit-learn = "^1.2.0"
scipy = "^1.9.3"
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
coverage = {extras = ["toml"], version = "^7.0.1"}
isort = "^5.12.0"
flake8 = "^6.0.0"
flake8-black = "^0.3.6"
flake8-isort = "^6.0.0"
flake8-bugbear = "^22.12.6"
flake8-bandit = "^4.1.1"
flake8-docstrings = "^1.6.0"
pre-commit = "^2.21.0"
pre-commit-hooks = "^4.4.0"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.2"
mkdocs-material = "^8.5.11"
mknotebooks = "^0.7.1"
mkdocstrings = {extras = ["python"], version = "^0.19.1"}
mkdocs-autorefs = "^0.4.1"
pygments = "^2.13.0"
jupyter = "^1.0.0"
mkdocs-click = "^0.8.0"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["pwlreg"]
[tool.coverage.report]
show_missing = true
[tool.isort]
profile = "black"