From 262922e0af4852e91248430b382b1df38b137c34 Mon Sep 17 00:00:00 2001 From: rowanc1 Date: Thu, 3 Jul 2014 15:44:57 -0700 Subject: [PATCH] long description in setup.py --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9dcf2925..71e10b51 100644 --- a/setup.py +++ b/setup.py @@ -28,6 +28,9 @@ CLASSIFIERS = [ import os, os.path +with open("README.md") as f: + LONG_DESCRIPTION = ''.join(f.readlines()) + setup( name = "SimPEG", version = "0.1.1", @@ -37,8 +40,9 @@ setup( 'matplotlib>=1.3', ], author = "Rowan Cockett", - author_email = "rowanc1@gmail.com", + author_email = "rowan@3ptscience.com", description = "SimPEG: Simulation and Parameter Estimation for Geophysics", + long_description = LONG_DESCRIPTION, license = "MIT", keywords = "geophysics inverse problem", url = "http://simpeg.3ptscience.com/",