Skip to content

Commit

Permalink
RLS: Import README and CHANGES for long desc in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jseabold committed Aug 24, 2011
1 parent 31040dd commit 4966ee0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -15,10 +15,13 @@
compile_cython = 1
sys.argv.remove('--with-cython')

curdir = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(curdir, "README.txt")).read()
CHANGES = open(os.path.join(curdir, "CHANGES.txt")).read()

DISTNAME = 'scikits.statsmodels'
DESCRIPTION = 'Statistical computations and models for use with SciPy'
LONG_DESCRIPTION = descr
LONG_DESCRIPTION = README + '\n\n' + CHANGES
MAINTAINER = 'Skipper Seabold, Josef Perktold'
MAINTAINER_EMAIL ='pystatsmodels@googlegroups.com'
URL = 'http://statsmodels.sourceforge.net/'
Expand Down

0 comments on commit 4966ee0

Please sign in to comment.