File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,10 @@ Dependencies
35
35
36
36
- [ numpy] ( http://www.numpy.org/ )
37
37
38
+ - [ scipy] ( http://www.scipy.org/ )
39
+
40
+ - [ matplotlib] ( matplotlib.sourceforge.net )
41
+
38
42
- [ pandas] ( http://pandas.pydata.org/ )
39
43
40
44
- [ statsmodels] ( http://statsmodels.sourceforge.net/ )
@@ -62,6 +66,8 @@ Development
62
66
63
67
https://github.com/mwaskom/seaborn
64
68
69
+ Please submit any bugs you encounter to the Github issue tracker.
70
+
65
71
66
72
Celebrity Endorsements
67
73
----------------------
Original file line number Diff line number Diff line change 2
2
#
3
3
# Copyright (C) 2012 Michael Waskom <mwaskom@stanford.edu>
4
4
5
- descr = """Seaborn: plotting utilities for neuroimaging using matplotlib """
5
+ descr = """Seaborn: improved statistical visualization using Matplotlib """
6
6
7
7
import os
8
8
11
11
DESCRIPTION = descr
12
12
MAINTAINER = 'Michael Waskom'
13
13
MAINTAINER_EMAIL = 'mwaskom@stanford.edu'
14
+ URL = 'https://github.com/mwaskom/seaborn'
14
15
LICENSE = 'BSD (3-clause)'
15
16
DOWNLOAD_URL = 'https://github.com/mwaskom/seaborn'
16
17
VERSION = '0.1'
27
28
maintainer_email = MAINTAINER_EMAIL ,
28
29
description = DESCRIPTION ,
29
30
license = LICENSE ,
31
+ url = URL ,
30
32
version = VERSION ,
31
33
download_url = DOWNLOAD_URL ,
32
34
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
+ )
You can’t perform that action at this time.
0 commit comments