-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 937 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (35 loc) · 937 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
34
35
36
37
38
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "humi"
version = "0.1.0"
description = "Mutual Information between Time Series and Temporal Event Sequence"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Haoji Hu" },
{ name = "Huaqing Mao" },
{ name = "Yijun Lin" },
{ name = "Xiaowei Jia" },
{ name = "Jinwei Zhou" },
{ name = "Minoh Jeong" },
{ name = "Yao-Yi Chiang" },
]
keywords = ["mutual information", "time series", "event sequence", "temporal data"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy",
"scipy",
"scikit-learn",
]
[project.urls]
Homepage = "https://github.com/HaojiHu/HUMI"
Paper = "https://arxiv.org/abs/2606.01602"
[tool.setuptools]
packages = ["humi"]