You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
clusty/setup.py

22 lines
371 B
Python

import sys
from setuptools import setup, find_packages
version = '0.1'
setup(
name='clusty',
version=version,
author='clusty collective',
install_requires=['scikit-learn>=0.21.3'],
packages=['clusty'],
package_dir={'clusty': 'src'},
entry_points={
'console_scripts': [
'clusty = clusty.clusty:main',
]
}
)