From d74efc90edc85382dee3918fc5b12692abcfe491 Mon Sep 17 00:00:00 2001 From: rowanc1 Date: Thu, 3 Jul 2014 14:31:21 -0700 Subject: [PATCH] updates for pip --- .gitignore | 1 + MANIFEST.in | 1 + setup.py | 10 ++++------ 3 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 MANIFEST.in diff --git a/.gitignore b/.gitignore index 04d72573..0fb60aa3 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,4 @@ nosetests.xml *.sublime-workspace docs/_build/ *_cython.c +Makefile diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..c74cefe0 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include *.rst LICENSE diff --git a/setup.py b/setup.py index 43eff060..be515933 100644 --- a/setup.py +++ b/setup.py @@ -11,10 +11,8 @@ from Cython.Build import cythonize import numpy as np CLASSIFIERS = [ -'Development Status :: 0.0.1 - Alpha', -'Intended Audience :: Science/Research', 'Intended Audience :: Developers', -'License :: MIT License', +'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering :: Mathematics', @@ -28,7 +26,7 @@ import os, os.path setup( name = "SimPEG", - version = "0.1dev", + version = "0.1.0", packages = find_packages(), install_requires = ['numpy>=1.7', 'scipy>=0.13', @@ -39,8 +37,8 @@ setup( description = "SimPEG: Simulation and Parameter Estimation for Geophysics", license = "MIT", keywords = "geophysics inverse problem", - url = "http://simeg.rtfd.org/", - download_url = "http://github.com/simpeg", + url = "http://simpeg.3ptscience.com/", + download_url = "http://github.com/simpeg/simpeg", classifiers=CLASSIFIERS, platforms = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"], use_2to3 = False,