-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (75 loc) · 2.63 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (75 loc) · 2.63 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "murphet"
version = "1.6.6"
description = "Bayesian time‑series model with Beta/Gaussian heads, smooth changepoints and seasonality"
readme = { file = "README.md", content-type = "text/markdown" } # ← MIME helps PyPI render correctly
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "Stephen Murphy", email = "stephenjmurph@gmail.com" }
]
# ---------- NEW: Trove classifiers (show up as filters on PyPI) ----------
classifiers = [
# maturity / intended audience
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
# license & language
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9", # list the versions you test on
"Programming Language :: Python :: 3.10",
# frameworks / domains
"Framework :: Matplotlib", # optional but helps search
"Framework :: Jupyter",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Utilities"
]
# ---------- NEW: searchable keywords (comma‑separated) ----------
keywords = [
"prophet",
"time series",
"bayesian forecasting",
"beta regression",
"churn modelling",
"seasonality",
"changepoint detection",
"stan",
"churn rates",
"probability forecasting",
"stock price changes",
"murphet",
"forecasting",
"prediction"
]
# ---------- useful project links ----------
urls = { Homepage = "https://murphet.com", Repository = "https://github.com/halsted312/murphet", "Issue Tracker" = "https://github.com/halsted312/murphet/issues", Documentation = "https://murphet.com/docs"}
dependencies = [
"cmdstanpy>=1.1.0",
"numpy>=1.22",
"pandas>=1.5",
"scipy>=1.9"
]
[project.optional-dependencies]
dev = ["pytest>=7", "build", "black", "pre-commit"]
plot = ["matplotlib>=3.7", "seaborn>=0.13"]
extra = ["optuna>=3", "prophet>=1.1"]
# --------------------------------------------------------------------
# setuptools‑specific configuration
[tool.setuptools]
package-dir = { "" = "src" }
packages = ["murphet"]
include-package-data = true
[tool.setuptools.package-data]
# ship example notebooks & Stan models inside the sdist/wheel
"murphet" = ["*.stan"]
"docs.fig" = ["docs/figs/*.png"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"