-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cardtale"
version = "0.1.2"
authors = [
{name = "Vitor Cerqueira", email = "cerqueira.vitormanuel@gmail.com" },
]
keywords = [
"Model Cards",
"Data Cards",
"Data Science",
"Machine Learning",
"Time Series",
"Forecasting"
]
description = "Data, Model, and Algorithm Cards for Time Series"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"arch==7.1.0",
"pandas==2.2.3",
"lightgbm==4.5.0",
"neuralforecast==1.7.5",
"mlforecast==0.13.4",
"statsforecast==1.7.8",
"datasetsforecast==0.0.8",
"numerize==0.12",
"plotnine==0.13.6",
"statsmodels==0.14.4",
"jinja2==3.1.4",
"ruptures==1.1.9",
"weasyprint==62.3"
]
[project.urls]
"Homepage" = "https://github.com/vcerqueira/cardtale"
"Bug Tracker" = "https://github.com/vcerqueira/cardtale/issues"
[tool.hatch.build.targets.wheel]
packages = ["cardtale"]