Skip to content

Commit 27afe01

Browse files
committed
More README/setup changes
1 parent 2e83074 commit 27afe01

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ Dependencies
3535

3636
- [numpy](http://www.numpy.org/)
3737

38+
- [scipy](http://www.scipy.org/)
39+
40+
- [matplotlib](matplotlib.sourceforge.net)
41+
3842
- [pandas](http://pandas.pydata.org/)
3943

4044
- [statsmodels](http://statsmodels.sourceforge.net/)
@@ -62,6 +66,8 @@ Development
6266

6367
https://github.com/mwaskom/seaborn
6468

69+
Please submit any bugs you encounter to the Github issue tracker.
70+
6571

6672
Celebrity Endorsements
6773
----------------------

setup.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Copyright (C) 2012 Michael Waskom <mwaskom@stanford.edu>
44

5-
descr = """Seaborn: plotting utilities for neuroimaging using matplotlib"""
5+
descr = """Seaborn: improved statistical visualization using Matplotlib"""
66

77
import os
88

@@ -11,6 +11,7 @@
1111
DESCRIPTION = descr
1212
MAINTAINER = 'Michael Waskom'
1313
MAINTAINER_EMAIL = 'mwaskom@stanford.edu'
14+
URL = 'https://github.com/mwaskom/seaborn'
1415
LICENSE = 'BSD (3-clause)'
1516
DOWNLOAD_URL = 'https://github.com/mwaskom/seaborn'
1617
VERSION = '0.1'
@@ -27,7 +28,16 @@
2728
maintainer_email=MAINTAINER_EMAIL,
2829
description=DESCRIPTION,
2930
license=LICENSE,
31+
url=URL,
3032
version=VERSION,
3133
download_url=DOWNLOAD_URL,
3234
packages=['seaborn', 'seaborn.tests'],
33-
)
35+
classifiers=['Intended Audience :: Science/Research',
36+
'Programming Language :: Python',
37+
'License :: OSI Approved',
38+
'Topic :: Scientific/Engineering',
39+
'Operating System :: POSIX',
40+
'Operating System :: Unix',
41+
'Operating System :: MacOS']
42+
43+
)

0 commit comments

Comments
 (0)