-
Notifications
You must be signed in to change notification settings - Fork 59
/
pyproject.toml
55 lines (47 loc) · 1.32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "momentfm"
version = "0.1.2"
dependencies = [
"huggingface-hub==0.24.0",
"numpy==1.25.2",
"torch~=2.0", # package was tested on 2.0.1
"transformers==4.33.3",
]
requires-python = ">=3.10"
authors = [
{name = "Mononito Goswami", email = "[email protected]"},
{name = "Konrad Szafer", email = ""},
{name = "Arjun Choudhry"},
{name = "Yifu Cai"},
]
maintainers = [
{name = "Mononito Goswami", email = "[email protected]"},
{name = "Konrad Szafer", email = "[email protected]"},
{name = "Yifu Cai", email = "[email protected]"},
]
description = "MOMENT: A Family of Open Time Series Foundation Models"
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"time series",
"forecasting",
"classification",
"imputation",
"anomaly detection",
"transformers",
"pytorch",
"huggingface",
"moment",
"foundation models",
"large language models",
]
classifiers = [
"Programming Language :: Python"
]
[project.urls]
Homepage = "https://moment-timeseries-foundation-model.github.io/"
Repository = "https://github.com/moment-timeseries-foundation-model/moment"
"Bug Tracker" = "https://github.com/moment-timeseries-foundation-model/moment/issues"