-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
59 lines (43 loc) · 1.35 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Feb 14 17:16:34 2022
Python TSFEDL Setup.
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
# Project name.
# $ pip install pyDML
name='TSFEDL',
# Version
version='1.0.7.6',
# Description
description='Time Series Spatio-Temporal Feature Extraction using Deep Learning',
# Long description (README)
long_description=long_description,
# URL
url='https://github.com/ari-dasci/S-TSFE-DL',
# Author
author='Ignacio Aguilera Martos, Ángel Miguel García Vico, Julian Luengo, Francisco Herrera',
# Author email
author_email='[email protected]',
# Keywords
keywords=['Time series',
'Feature extraction',
'Deep learning',
'recurrent',
'cnn'],
# Packages
packages=find_packages(exclude=['docker', 'docs', 'test', 'examples']),
# Test suite
test_suite='test',
# Requeriments
install_requires=['scikit-learn', 'wfdb', 'obspy', 'tensorflow', 'keras', 'pytorch-lightning', 'torchmetrics'],
long_description_content_type='text/markdown',
python_requires='>=3.8'
)