forked from jasonlaska/spherecluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 767 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
29
30
31
from __future__ import print_function
import sys
from setuptools import setup, find_packages
with open('requirements.txt') as f:
INSTALL_REQUIRES = [l.strip() for l in f.readlines() if l]
try:
import numpy # NOQA
except ImportError:
print('numpy is required during installation')
sys.exit(1)
try:
import scipy # NOQA
except ImportError:
print('scipy is required during installation')
sys.exit(1)
setup(
name='spherecluster',
version='0.1.7',
description='Clustering on the unit hypersphere in scikit-learn.',
author='Jason Laska',
author_email='[email protected]',
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
url='https://github.com/clara-labs/spherecluster',
license='MIT',
)