-
Notifications
You must be signed in to change notification settings - Fork 418
/
setup.py
55 lines (51 loc) · 1.84 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
import kmodes
VERSION = kmodes.__version__
with open('README.rst', encoding='utf8') as readme_file:
README = readme_file.read()
setup(
name='kmodes',
packages=find_packages(exclude=[
'*.tests',
'*.tests.*',
]),
version=VERSION,
url='https://github.com/nicodv/kmodes',
author='Nelis J de Vos',
author_email='[email protected]',
license='MIT',
description='Python implementations of the k-modes and k-prototypes '
'clustering algorithms for clustering categorical data.',
long_description=README,
install_requires=[
# Note: minimum numpy and scipy versions should ideally be the same
# as what scikit-learn uses, but versions of numpy<1.10.4
# give import problems.
'numpy>=1.10.4',
'scikit-learn>=0.22.0',
'scipy>=0.13.3',
'joblib>=0.11'
],
extras_require={
'dev': [
'pytest',
'pytest-cov',
'pandas'
]
},
classifiers=['Development Status :: 4 - Beta',
'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 :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering'],
)