-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
53 lines (47 loc) · 1.22 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
# -*- coding: utf-8 -*-
# @Author: wqshen
# @Date: 2019/4/6 11:59
# @Last Modified by: wqshen
from setuptools import setup, find_packages
version = "0.1.1"
name = "pymdfs"
install_requires = [
"awx",
"numpy>=1.10",
"xarray",
"pandas",
"logzero>=1.0",
"pyyaml",
"protobuf<=3.20",
"retrying",
"httplib2",
"netCDF4<=1.5.8",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research/Operation",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: GeoScience :: Data",
]
setup(
name=name,
version=version,
description="High level python interface to Micaps MDFS Data",
author="Wenqiang Shen",
author_email="wqshen91@163.com",
python_requires=">=3.7",
install_requires=install_requires,
packages=find_packages(),
long_description=open('README.rst', 'r', encoding='utf8').read(),
url='https://github.com/zjobsdev/PyMDFS',
entry_points={
'console_scripts': [
'mdfs_dump=pymdfs.client_dump:_main',
'mdfs_query=pymdfs.client_query:_main',
]
},
include_package_data=True,
zip_safe=False,
)