forked from Tristanovsk/grs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 898 Bytes
/
setup.py
File metadata and controls
32 lines (26 loc) · 898 Bytes
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
from setuptools import setup, find_packages
__package__ = 'grs'
__version__ = '2.1.5'
setup(
name=__package__,
version=__version__,
packages=find_packages(),
package_data={
# If any package contains *.txt files, include them:
'grs': ['*.yml'],
'': ['data/lut/gases/*.nc', 'data/aux/*.txt'],
},
include_package_data=True,
url='',
license='MIT',
author='T. Harmel',
author_email='tristan.harmel@gmail.com',
description='scientific code for atmosphere and sunglint correction of Sentinel-2 and Landsat series',
# Dependent packages (distributions)
#install_requires=['cdsapi', 'pandas', 'geopandas', 'scipy', 'numba', 'numpy', 'netCDF4',
# 'matplotlib', 'docopt', 'python-dateutil', 'pyproj', 'xarray'],
entry_points={
'console_scripts': [
'grs = grs.run:main'
]}
)