-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (68 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
72 lines (68 loc) · 2.06 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
[build-system]
requires = [
"maturin>=1.0,<2.0",
"cmdstanpy>=1.0.4",
]
build-backend = "maturin"
[project]
name = "farseer"
dynamic = ["version"]
description = "Fast Bayesian time series forecasting in Rust, with Python bindings"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Ryan Bieber", email = "ryan.bieber@protonmail.com"},
]
license = {text = "GPL-3.0-or-later"}
keywords = ["forecasting", "time-series", "prophet", "bayesian", "rust"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
]
dependencies = [
"cmdstanpy>=1.0.4",
"numpy>=1.15.4",
"matplotlib>=2.0.0",
"pandas>=1.0.4",
"polars>=0.20.0",
"pyarrow>=10.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
notebook = [
"jupyter>=1.0",
"notebook>=7.0",
"ipykernel>=6.0",
"prophet>=1.1",
"pandas>=1.0",
"seaborn>=0.12",
"scikit-learn>=1.0",
]
[project.urls]
Homepage = "https://github.com/ryanbieber/seer"
Documentation = "https://github.com/ryanbieber/seer"
Repository = "https://github.com/ryanbieber/seer"
Issues = "https://github.com/ryanbieber/seer/issues"
[tool.maturin]
# Python source files are in the farseer/ directory
python-source = "."
# The Rust module will be named _farseer and placed inside the farseer package
module-name = "farseer._farseer"
# Include Stan model and related files
include = ["stan/*"]