Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
from setuptools import setup, find_packages
import kmodes
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',
description='Python implementations of the k-modes and k-prototypes '
'clustering algorithms for clustering categorical data.',
long_description=open('README.rst', 'r').read(),
install_requires=[