-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 834 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
import setuptools
import hkmeans_minibatch
# The text of the README file
with open('README.rst') as r:
readme = r.read()
setuptools.setup(
name="hkmeans_minibatch", # Replace with your own username
version=hkmeans_minibatch.__version__,
author="Satyajit Kumar",
author_email="ammesatyajit@gmail.com",
description="An implementation of hierarchical minibatch kmeans",
long_description=readme,
url="https://github.com/ammesatyajit/heirarchical-minibatch-kmeans",
packages=setuptools.find_packages(),
install_requires=[
"numpy",
"tqdm",
"scikit-learn"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)