-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
48 lines (42 loc) · 1.16 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
# -*- coding: utf-8 -*-
# @Author: wqshen
# @Date: 2019/4/6 11:59
# @Last Modified by: wqshen
from os.path import exists
from setuptools import setup, find_packages
name = 'awx'
version = "0.1.1"
install_requires = [
'numpy',
'xarray',
'pyproj'
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research/Operation',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: GeoScience :: AWX Data Reader',
]
setup(
name=name,
version=version,
description='AWX Satellite Data Reader',
author='wqshen',
author_email='wqshen91@163.com',
long_description_content_type='text/markdown',
long_description=open('README.md', 'r', encoding='utf8').read() if exists('README.md') else '',
url='https://github.com/wqshen/AwxReader',
python_requires='>=3.7',
install_requires=install_requires,
packages=find_packages(),
entry_points={
'console_scripts': [
'awx_info=awx:_info',
'awx_to_nc=awx:_convert_to_nc',
]
},
include_package_data=True,
zip_safe=False,
)