-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 688 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 688 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
27
28
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
import setuptools
install_requires = [
'scikit-learn',
'pandas',
'matplotlib',
'networkx',
]
tests_require = ['pytest']
setuptools.setup(
name="anomaly_detection_robustness",
author="Roel Bertens",
author_email="roelbertens@godatadriven.com",
description="Investigate the robustness of anomaly detection models",
license="MIT License",
packages=setuptools.find_packages(exclude=['data', 'notebooks', 'tests']),
install_requires=install_requires,
test_suite="tests",
tests_require=tests_require,
extras_require={'test': tests_require},
version='0.0.1',
)