-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (83 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
90 lines (83 loc) · 1.9 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[project]
name = "bbstat"
dynamic = ["version"]
authors = [{ name="Chris Wehmeyer", email="wehmeyer.chris@gmail.com" }]
description = "Lightweight Python library for learning and exploring Bayesian bootstrapping."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
keywords = [
"bayesian",
"bootstrap",
"statistics",
"uncertainty",
"nonparametric",
"education"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"matplotlib",
"numpy >= 1.21",
"scipy >= 1.11",
]
[project.optional-dependencies]
test = [
"pytest >= 7.0",
"pytest-cov",
]
docs = [
"mkdocs",
"mkdocs-autorefs",
"mkdocs-get-deps",
"mkdocs-include-markdown-plugin",
"mkdocs-material",
"mkdocstrings[python]",
"pymdown-extensions",
]
lint = [
"black",
"ruff",
]
typecheck = [
"mypy",
"scipy-stubs",
]
dev = [
"build",
"pre-commit",
"tox",
"twine",
]
[project.urls]
Homepage = "https://github.com/cwehmeyer/bbstat"
Documentation = "https://cwehmeyer.github.io/bbstat/"
Repository = "https://github.com/cwehmeyer/bbstat.git"
Issues = "https://github.com/cwehmeyer/bbstat/issues"
Changelog = "https://github.com/cwehmeyer/bbstat/blob/main/CHANGELOG.md"
[build-system]
requires = [
"setuptools >= 77.0.3",
"setuptools-scm",
"wheel",
]
[tool.setuptools]
packages = ["bbstat"]
include-package-data = true
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
write_to = "bbstat/_version.py"
[tool.mypy]
check_untyped_defs = true
[tool.mkdocs]
config_file = "mkdocs.yml"
build-backend = "setuptools.build_meta"