File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change 5
5
6
6
from __future__ import print_function
7
7
8
- import sys
9
-
10
8
from setuptools import find_packages , setup
11
9
import versioneer
12
10
13
11
ver = versioneer .get_version ()
14
12
15
- # Need to conditionally add enum support for older Python
16
- dependencies = ['matplotlib>=1.4' , 'numpy>=1.10.0' , 'scipy>=0.14' , 'pint>=0.8' ]
17
- if sys .version_info < (3 , 4 ):
18
- dependencies .append ('enum34' )
19
-
20
13
setup (
21
14
name = 'MetPy' ,
22
15
version = ver ,
56
49
'_static/metpy_150x150.png' , '_static/unidata_75x75.png' ,
57
50
'_static/unidata_150x150.png' ]},
58
51
59
- install_requires = dependencies ,
52
+ install_requires = ['matplotlib>=1.4' , 'numpy>=1.10.0' , 'scipy>=0.14' ,
53
+ 'pint>=0.8' , 'enum34;python_version<"3.4"' ],
60
54
extras_require = {
61
55
'cdm' : ['pyproj>=1.9.4' ],
62
56
'dev' : ['ipython[all]>=3.1' ],
74
68
75
69
zip_safe = True ,
76
70
77
- download_url = 'https://github.com/Unidata/MetPy/archive/v{}.tar.gz' .format (ver ),)
71
+ download_url = 'https://github.com/Unidata/MetPy/archive/v{}.tar.gz' .format (ver ), )
You can’t perform that action at this time.
0 commit comments