File tree Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change 8
8
from .axisgrid import *
9
9
set ()
10
10
11
- __version__ = "0.3.dev "
11
+ __version__ = "0.3"
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env python
2
2
#
3
- # Copyright (C) 2012 Michael Waskom <mwaskom@stanford.edu>
4
-
5
- descr = """Seaborn: improved statistical visualization using Matplotlib"""
6
-
7
- import os
8
-
3
+ # Copyright (C) 2012-2014 Michael Waskom <mwaskom@stanford.edu>
9
4
5
+ DESCRIPTION = "Seaborn: statistical data visualization"
10
6
DISTNAME = 'seaborn'
11
- DESCRIPTION = descr
12
7
MAINTAINER = 'Michael Waskom'
13
8
MAINTAINER_EMAIL = 'mwaskom@stanford.edu'
14
9
URL = 'http://stanford.edu/~mwaskom/software/seaborn/'
15
10
LICENSE = 'BSD (3-clause)'
16
- DOWNLOAD_URL = ('https://github.com/mwaskom/seaborn/zipball/master'
17
- '#egg=seaborn=dev' )
18
- VERSION = '0.3.dev'
11
+ DOWNLOAD_URL = 'https://github.com/mwaskom/seaborn/'
12
+ VERSION = '0.3'
19
13
20
14
from setuptools import setup
21
15
22
16
if __name__ == "__main__" :
17
+ import os
23
18
if os .path .exists ('MANIFEST' ):
24
19
os .remove ('MANIFEST' )
25
20
You can’t perform that action at this time.
0 commit comments