forked from CyanideCN/PyCINRAD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (25 loc) · 786 Bytes
/
setup.py
File metadata and controls
25 lines (25 loc) · 786 Bytes
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
from setuptools import setup, find_packages
import os
import glob
setup(
name = 'cinrad',
version = '1.1',
description = 'cinrad reading and plotting',
long_description = 'cinrad reading and plotting',
license = 'GPL Licence',
author = 'Du Puyuan',
packages = find_packages(),
include_package_data = True,
platforms = 'Windows',
install_requires = [],
data_files=[('cinrad', ['RadarStation.npy']),
('cinrad' + os.path.sep + 'colormap', glob.glob(r'colormap/*.txt')),
('cinrad' + os.path.sep + 'shapefile', glob.glob(r'shapefile/*'))],
scripts = [],
entry_points = {
'console_scripts': [
'test = test.help:main'
]
}
)