-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.03 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
[tool.poetry]
name = "pybmc"
version = "0.2.4"
description = "A package for Bayesian model combination"
authors = [
"Kyle Godbey <pybmc@ascsn.net>",
"Pranav Agarwal",
"Troy Dasher",
"Pablo Giuliani",
"An Le"
]
license = "GPL-3.0"
readme = "README.md"
homepage = "https://github.com/ascsn/pybmc"
repository = "https://github.com/ascsn/pybmc"
documentation = "https://ascsn.github.io/pybmc/"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^2.0.0"
scipy = "^1.15.0"
pandas = "^2.0.0"
matplotlib = "^3.7.0"
scikit-learn = "^1.3.0"
tables = "^3.10.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.3"
mkdocs-material = "^9.6.16"
mkdocstrings-python = "^1.16.0"
[tool.poetry.group.ci.dependencies]
pytest = "^7.0.0"
flake8 = "^7.0.0"
Flake8-pyproject = "^1.2.0"
mypy = "^1.4.0"
black = ">=23,<25"
bandit = "^1.7.0"
coverage = "^7.0.0"
pytest-cov = "^6.2.1"
[tool.black]
line-length = 79
[tool.flake8]
extend-ignore = ['E501']
exclude = ".venv"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"