You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
564 B
22 lines
564 B
from setuptools import setup, find_packages |
|
|
|
with open('README.md', 'r') as fh: |
|
long_description = fh.read() |
|
|
|
setup( |
|
name='kmeans', |
|
version='1.0.0', |
|
author='Taylor Bockman', |
|
author_email='tbockman@xchg.sh', |
|
description='Unweighted and Weighted K-Means implementation.', |
|
long_description=long_description, |
|
long_description_content_type='text/markdown', |
|
url='https://git.xchg.sh/angrygoats/kmeans', |
|
classifiers=[ |
|
], |
|
python_requires='>=3.6', |
|
packages=find_packages(), |
|
install_requires=[ |
|
'numpy' |
|
] |
|
)
|
|
|