-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (56 loc) · 1.5 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "spearmint"
dynamic = ["version"]
license = {file = "LICENSE"}
description = "Refreshing hypothesis testing in python!"
readme = "README.md"
authors = [
{name = "Dustin Stansbury", email = "dustin.stansbury@gmail.com"}
]
maintainers = [
{name = "Dustin Stansbury", email = "dustin.stansbury@gmail.com"}
]
keywords = [
"data science",
"hypothesis testing",
"AB testing",
"statistics",
"bayesian inference",
"bootstrap statistics"
]
classifiers = [
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Framework :: Jupyter :: JupyterLab",
"Topic :: Scientific/Engineering"
]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.25.2",
"scipy>=1.11.2",
"statsmodels>=0.14.0",
"pandas>=2.1.1",
"pymc>=5.8.0",
"holoviews>=1.18.0",
"matplotlib>=3.8.0",
"rich"
]
[project.optional-dependencies]
notebook = ["jupyterlab>=4.0.6"]
test = [
"ruff",
"mypy",
"pytest",
"pytest-coverage"
]
[project.urls]
Homepage = "https://github.com/dustinstansbury/spearmint"
Documentation = "https://github.com/dustinstansbury/spearmint"
Repository = "https://github.com/dustinstansbury/spearmint.git"
"Bug Tracker" = "https://github.com/dustinstansbury/spearmint/issues"
Changelog = "https://github.com/dustinstansbury/spearmint/blob/main/CHANGELOG.md"
[tool.setuptools_scm]
version_file = "spearmint/_version.py"