-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
59 lines (56 loc) · 1.92 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
54
55
56
57
58
59
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
with open('requirements.txt') as req_file:
requirements = req_file.read()
setup(
name='weather_forecast_retrieval',
description="Weather forecast retrieval gathers relevant gridded weather "
"forecasts to ingest into physically based models for water "
"supply forecasts",
long_description=readme,
long_description_content_type="text/markdown",
author="USDA ARS NWRC",
author_email='[email protected]',
url='https://github.com/USDA-ARS-NWRC/weather_forecast_retrieval',
packages=['weather_forecast_retrieval'],
entry_points={
'console_scripts': [
'grib2nc=weather_forecast_retrieval.grib2nc:main',
'get_hrrr_archive=weather_forecast_retrieval.hrrr_archive:cli',
'hrrr_preprocessor=weather_forecast_retrieval.hrrr_preprocessor:cli',
'hrrr_nomads=weather_forecast_retrieval.hrrr_nomads:cli'
]},
include_package_data=True,
install_requires=requirements,
license="CC0 1.0",
zip_safe=False,
keywords='weather_forecast_retrieval',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
test_suite='tests',
extras_require={
'tests': [
'mock',
],
},
use_scm_version={
'local_scheme': 'node-and-date',
},
setup_requires=[
'setuptools_scm'
],
scripts=[
'scripts/run_hrrr_retrieval',
'scripts/run_hrrr_retrieval_dates',
'scripts/convert_grib2nc'
]
)