1 Star 0 Fork 4

njsqxtlc/pycwr

forked from hwaif/pycwr 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.73 KB
一键复制 编辑 原始数据 按行查看 历史
YvZheng 提交于 2020-01-09 21:45 . fix pyart radar obj bugs in v0.2.14
# -*- coding: utf-8 -*-
"""
suggested by bugsuse(https://github.com/bugsuse)
"""
from setuptools import find_packages, setup
import sys, os
parent_dir = os.path.dirname(os.path.abspath(__file__))
sys.path.append(parent_dir)
DISTNAME = "pycwr"
AUTHOR = "pycwr developers"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/YvZheng/pycwr"
LICENSE='MIT'
PYTHON_REQUIRES = ">=3.6"
INSTALL_REQUIRES = ["matplotlib", "pyproj", "Cartopy", "xarray","numpy",\
"scipy", "pandas", "PyQt5", "netCDF4", 'easydict']
DESCRIPTION = "China Weather Radar tools"
LONG_DESCRIPTION = """The Weather Radar Toolkit, support most of China's radar formats
(WSR98D, CINRAD/SA/SB/CB, CINRAD/CC/CCJ, CINRAD/SC/CD)"""
PLATFORMS = ["Linux", "Mac OS-X", "Windows"]
CLASSIFIERS = [
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows']
setup(
name=DISTNAME,
version="0.2.14",
author=AUTHOR,
license=LICENSE,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
url=URL,
platforms=PLATFORMS,
classifiers=CLASSIFIERS,
include_package_data = True,
packages=find_packages(parent_dir),
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/njsqxtlc/pycwr.git
[email protected]:njsqxtlc/pycwr.git
njsqxtlc
pycwr
pycwr
master

搜索帮助