-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (40 loc) · 1.53 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
"""ECGAN setup configuration."""
from setuptools import find_packages, setup
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='ecgan',
entry_points={
'console_scripts': [
'ecgan-init = ecgan.cli:run_init',
'ecgan-preprocess = ecgan.cli:run_preprocessing',
'ecgan-train = ecgan.cli:run_training',
'ecgan-detect = ecgan.cli:run_detection',
'ecgan-inverse = ecgan.cli:run_inverse',
]
},
version='0.0.2',
description='Library to train and evaluate ML architectures to detect anomalies in time series, especially ECG.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/emundo/ecgan',
author='Fiete Lüer, Maxim Dolgich, Tobias Weber',
author_email='[email protected]',
license='Apache 2.0',
packages=find_packages(),
install_requires=[],
python_requires='>=3.8, <4',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
)