-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
29 lines (25 loc) · 805 Bytes
/
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
#!/usr/bin/env python
import sys
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
setup(name='scikit-sos',
version='0.1.10',
description='A scikit-learn compatible implementation of Stochastic Outlier Selection (SOS) for detecting outliers.',
long_description=README,
author='Jeroen Janssens',
author_email='jeroen@jeroenjanssens.com',
url='https://github.com/jeroenjanssens/scikit-sos',
license='BSD',
packages=['sksos'],
install_requires=['numpy'],
include_package_data=True,
zip_safe=False,
entry_points={'console_scripts':
['sos=sksos.cli:main']
}
)