Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save redhog/3e85dc7aecca926e0f28 to your computer and use it in GitHub Desktop.
Save redhog/3e85dc7aecca926e0f28 to your computer and use it in GitHub Desktop.
#! /usr/bin/python
import setuptools
setuptools.setup(
name = "clustering",
description = "Command line tools for scikit-learn",
keywords = "csv cluster",
install_requires = ["scikit-learn>=0.14.1", "numpy>=1.8.0", "scipy>=0.13.3"],
version = "0.0.1",
author = "Egil Moeller",
author_email = "egil@skytruth.org",
license = "GPL",
url = "https://github.com/SkyTruth/clustering",
packages=['clusteringModule'],
)
pip install clustering
python
>>> import clusteringModule
....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment