forked from nmcdev/meteva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
68 lines (57 loc) · 1.97 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
63
64
65
66
67
68
# _*_ coding: utf-8 _*_
from os import path
from setuptools import find_packages, setup
from codecs import open
name = "meteva"
author ="liucouhua,daikan,wangbaoli,tangbuxing"
version =__import__(name).__version__
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=name,
version=version,
description=("A collections of functions for meteorological verification."),
long_description=long_description,
# author
author=author,
author_email='[email protected]',
# LICENSE
license='GPL3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
packages=find_packages(exclude=['docs', 'tests', 'build', 'dist']),
include_package_data=True,
exclude_package_data={'': ['.gitignore']},
install_requires=[
'numpy>=1.12.1',
'pandas>=1.0.4',
"netCDF4>=1.4.2",
'scipy>=0.19.0',
'xarray>=0.10.0',
'matplotlib>=3.0.0',
"httplib2>=0.12.0",
"protobuf>=3.6.1",
"pyshp>=2.1.0",
"tables>=3.4.4",
"urllib3>=1.21.1",
]
)
# install_requires = ['numpy>=1.12.1',
# 'scipy>=0.19.0',
# 'pandas>=1.0.1',
# 'xarray>=0.11.0',
# 'scikit-learn>=0.21.2',
# 'matplotlib>=3.3.1',
# "httplib2>=0.12.0",
# "protobuf>=3.6.1",
# "netCDF4>=1.4.2",
# "seaborn>=0.9.0",
# "pyshp>=2.1.0",
# "tables>=3.4.4",
# "urllib3>=1.21.1",
# "statsmodels>=0.11.0",
# ]