-
Notifications
You must be signed in to change notification settings - Fork 158
/
setup.py
62 lines (58 loc) · 1.61 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup, find_packages
from setuptools.extension import Extension
from os.path import join, exists, sep
import glob
try:
from Cython.Build import cythonize
import numpy as np
pyx_paths = [
join("cinrad", "_utils.pyx"),
join("cinrad", "correct", "_unwrap_2d.pyx"),
]
cythonize_flag = True
for _pyx in pyx_paths:
if not exists(_pyx):
cythonize_flag = False
break
if cythonize_flag:
ext_modules = cythonize(pyx_paths)
else:
ext_modules = list()
for _pyx in pyx_paths:
name = _pyx.rstrip(".pyx").replace(sep, ".")
source = _pyx.replace(".pyx", ".c")
ext_modules.append(Extension(name, [source]))
include_dirs = [np.get_include()]
except ImportError:
ext_modules = None
include_dirs = None
data_pth = join("cinrad", "data")
setup(
name="cinrad",
version="1.9.1",
description="Decode CINRAD radar data and visualize",
long_description="Decode CINRAD radar data and visualize",
license="GPL Licence",
author="Puyuan Du",
author_email="dpy274555447@gmail.com",
packages=find_packages(),
include_package_data=True,
platforms="Windows",
python_requires=">=3.5",
install_requires=[
"metpy>=0.8",
"cartopy>=0.15",
"pyshp!=2.0.0, !=2.0.1",
"matplotlib>=2.2",
"vanadis",
"cinrad_data>=0.1"
],
package_dir={"cinrad": "cinrad"},
package_data={"cinrad": [
"data/*.*",
"data/*/*.*"
]},
scripts=[],
ext_modules=ext_modules,
include_dirs=include_dirs,
)