forked from CyanideCN/PyCINRAD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.45 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
from setuptools import setup, find_packages
import os
from os.path import join
import glob
try:
from Cython.Build import cythonize
import numpy as np
ext_modules = cythonize([join('cinrad', '_utils.pyx'), join('cinrad', 'correct', '_unwrap_2d.pyx')])
include_dirs = [np.get_include()]
except ImportError:
ext_modules = None
include_dirs = None
data_pth = join('cinrad', 'data')
setup(
name = 'cinrad',
version = '1.4.2',
description = 'Decode CINRAD radar data and visualize',
long_description = 'Decode CINRAD radar data and visualize',
license = 'GPL Licence',
author = 'Puyuan Du',
author_email = '[email protected]',
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', 'pyresample', 'matplotlib>=2.2'],
data_files = [(data_pth, [join(data_pth, 'RadarStation.pickle'), join(data_pth, 'chinaCity.json')]),
(join(data_pth, 'colormap'), glob.glob(join(data_pth, 'colormap', '*.cmap'))),
(join(data_pth, 'shapefile'), glob.glob(join(data_pth, 'shapefile', '*'))),
(join(data_pth, 'font'), glob.glob(join(data_pth, 'font', '*')))],
scripts = [],
ext_modules = ext_modules,
include_dirs = include_dirs,
entry_points = {
'console_scripts': [
'test = test.help:main'
]
}
)