-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (32 loc) · 956 Bytes
/
pyproject.toml
File metadata and controls
33 lines (32 loc) · 956 Bytes
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
[project]
name = "forecasting"
version = "0.1.0"
description = "Forecasting and entropy-rate estimation tools with SARIMAX, Lempel-Ziv, and geospatial utilities"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Valeria D'Andrea"}
]
dependencies = [
"numpy >=1.20",
"pandas >=1.3",
"scipy >=1.7",
"scikit-learn >=1.0",
"statsmodels >=0.13",
"matplotlib >=3.5"
]
keywords = ["SARIMAX", "forecasting", "entropy", "Lempel-Ziv", "haversine", "time series"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis"
]
[project.urls]
Homepage = "https://github.com/CoMuNeLab/forecasting"
Repository = "https://github.com/CoMuNeLab/forecasting"
[tool.setuptools.packages.find]
where = ["src"]
include = ["forecasting"]