forked from nicodv/kmodes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.39 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.39 KB
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
from setuptools import setup, find_packages
import kmodes
DESCRIPTION = __doc__
VERSION = kmodes.__version__
setup(
name='kmodes',
packages=find_packages(exclude=[
'*.tests',
'*.tests.*',
]),
version=VERSION,
url='https://github.com/nicodv/kmodes',
author='Nico de Vos',
author_email='njdevos@gmail.com',
license='MIT',
summary='Python implementations of the k-modes and k-prototypes clustering '
'algorithms, for clustering categorical data.',
description=DESCRIPTION,
long_description=open('README.rst', 'r').read(),
install_requires=[
'numpy>=1.10.4',
'scikit-learn>=0.17.1',
'scipy>=0.17.0',
],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering'],
)