-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 805 Bytes
/
setup.py
File metadata and controls
22 lines (18 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
def parse_requirements(filename):
""" load requirements from a pip requirements file """
lineiter = (line.strip() for line in open(filename))
return [line for line in lineiter if line and not line.startswith("#")]
setup(
name='deep-adots',
author='Maxi Fischer, Willi Gierke, Ajay Kesar, Thomas Kellermeier, Axel Stebner, Daniel Thevessen',
description='Unsupervised Anomaly Detection: Representation Learning for Predictive Maintenance over Time',
long_description=open('README.md').read(),
version='0.0',
packages=[],
scripts=[],
# Requirements for executing the project (not development)
install_requires=parse_requirements('requirements.txt'),
url='github.com/KDD-OpenSource/DeepADoTS',
license='MIT License',
)