-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (29 loc) · 939 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
with open('LICENSE', 'r') as f:
license_text = f.read()
setup(
name='viirs-tools',
description='Python library for processing VIIRS data',
long_description_content_type='text/markdown',
long_description=long_description,
url='https://github.com/Veon2479/viirs-tools',
license=license_text,
author='Andrey Shuliak',
version='1.0.2',
packages=find_packages(),
install_requires=[
'xarray',
],
extras_require={
'assimilator': ['netcdf4']
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Atmospheric Science'
],
keywords=['viirs', 'satellite', 'remote sensing', 'meteorology'],
)