https://github.com/dimenwarper/scimitar
Raw File
Tip revision: c7a4a0b81ffb72c13213dec156f6a51491a7ba49 authored by Pablo Cordero on 28 August 2017, 21:22:45 UTC
Committing first pass of BEGs
Tip revision: c7a4a0b
setup.py
from setuptools import setup

setup(name='scimitar',
        version='0.1',
        description='Trajectory analysis of single cell measurements',
        author='Pablo Cordero',
        author_email='dimenwarper@gmail.com',
        url='https://github.com/dimenwarper/scimitar',
        packages=['scimitar'],
        install_requires=['numpy', 'scipy', 'scikit-learn', 'networkx', 'matplotlib', 'pandas', 'seaborn', 'munkres']
        )
back to top