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