-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 764 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 764 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
__author__ = 'Artem Ryzhikov'
from setuptools import setup
setup(
name="klcpd",
version='0.1.0',
description="Unofficial PyTorch implementation of KL CPD for deep change point and anomaly detection in timeseries",
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/HolyBayes/klcpd',
author='Artem Ryzhikov',
packages=['klcpd'],
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 ',
],
keywords='pytorch, deep learning, timeseries, anomaly detection, change point detection',
install_requires=[
'torch>=1.6.0',
'scipy>=1.5.2',
'numpy>=1.18.5'
]
)