-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
45 lines (44 loc) · 1.21 KB
/
setup.py
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
from setuptools import setup
setup(
name='TimeSeAD',
packages=['timesead', 'timesead_experiments'],
version='0.0.1',
license='MIT',
description='TimeSeAD - Library for Benchmarking Multivariate Time Series Anomaly Detection',
author='Dennis Wagner, Tobias Michels, Florian C.F. Schulz, Arjun Nair',
url='https://github.com/wagner-d/TimeSeAD',
keywords=[
'time series anomaly detection',
'anomaly detection',
'time series',
'benchmark'
],
install_requires=[
'matplotlib>=3.3',
'numpy>=1.20',
'scikit-learn>=0.24.2',
'tqdm>=4.59',
'pandas>=1.2',
'scikit-learn>=0.24',
'torch>=1.9.0',
'torchvision>=0.2.2',
'torch-geometric',
'pyreadr',
'pyod',
'eif==1.0.2',
'einops'
],
extras_require={
'experiments': [
'pymongo>=3.12',
'sacred>=0.8',
],
'docs': [
'sphinx>=6.1',
'sphinx-autoapi>=2.1',
'myst-parser>=1.0',
'sphinx-rtd-theme',
]
}
)