-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
89 lines (81 loc) · 1.84 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
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0"]
[project]
name = "pymc-marketing"
description = "Marketing Statistical Models in PyMC"
requires-python = ">=3.8"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
maintainers = [{ name = "PyMC Labs", email = "[email protected]" }]
dependencies = [
"arviz>=0.13.0",
"matplotlib>=3.5.1",
"numpy>=1.17",
"pandas",
# NOTE: Keep minimum pymc version in sync with ci.yml `OLDEST_PYMC_VERSION`
"pymc>=5.5.0",
"scikit-learn>=1.1.1",
"seaborn>=0.12.2",
"xarray",
"xarray-einstats>=0.5.1",
"pymc-experimental>=0.0.8",
]
[project.optional-dependencies]
docs = [
"sphinx",
"ipython!=8.7.0",
"myst-parser",
"myst-nb",
"pydata-sphinx-theme>=0.12.0.dev0",
"sphinx-copybutton",
"sphinx-autodoc-typehints",
"sphinxext-opengraph",
"sphinx-notfound-page",
"sphinx-design"
]
lint = [
"black>=22.3.0",
"flake8>=4.0.1",
"isort>=5.10.1",
"mypy",
"pandas-stubs",
"pre-commit>=2.19.0",
"pylint"
]
test = [
"lifetimes==0.11.3",
"pytest==7.0.1",
"pytest-cov==3.0.0"
]
[tool.setuptools]
packages = [
"pymc_marketing",
"pymc_marketing.mmm",
"pymc_marketing.clv",
"pymc_marketing.clv.models"
]
[tool.setuptools.dynamic]
version = {file = "pymc_marketing/version.txt"}
[project.urls]
repository = "https://github.com/pymc-labs/pymc-marketing"
# Other options
#homepage = "https://bambinos.github.io/bambi"
#documentation = ""
#changelog = ""
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = [
"-v",
"--strict-markers",
"--strict-config",
"--cov=pymc_marketing",
"--cov-report=term-missing",
"--color=yes",
]
filterwarnings = [
"ignore::DeprecationWarning:bokeh.core.property.primitive:37"
]
testpaths = "tests"