-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 880 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
29
from setuptools import setup, find_packages
import os
__version__ = "1.0.0"
setup(
name='crowflow',
version=__version__,
packages=find_packages(),
description='Python package for evaluating clustering stability through the use of repeated stochastic clustering and element-centric evaluation metrics.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'numpy',
'matplotlib',
'scikit-learn',
'pandas',
'seaborn',
'plotnine',
'ClustAssessPy'
],
url='https://github.com/Core-Bioinformatics/crowflow-py',
license='MIT',
author='Rafael Kollyfas',
author_email='rk720@cam.ac.uk',
python_requires='>=3.7',
keywords=['clustering', 'evaluation', 'stability', 'assessment', 'machine learning'],
zip_safe=False,
)