Skip to content

Commit

Permalink
🔖 bump to version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
perillaroc committed Feb 4, 2020
1 parent f1e2b21 commit f66cf60
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 27 deletions.
1 change: 0 additions & 1 deletion nwpc_graphics/systems/grapes_gfs_gmf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# coding: utf-8
import datetime
import tempfile
import pathlib
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
# coding: utf-8

import datetime

import pytimeparse

from nwpc_graphics.systems.grapes_gfs_gmf.plotter import BasePlotter


Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# coding: utf-8

from nwpc_graphics.systems.grapes_gfs_gmf.plotter import BasePlotter


class FcAeaPlotter(BasePlotter):
def __init__(self, task: dict, work_dir: str, config: dict):
BasePlotter.__init__(self, task, work_dir, config)

self.ncl_script_name = None

def _get_image_list(self):
forecast_hour = f"{int(self.forecast_timedelta.total_seconds()) // 3600:03}"
return [{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# coding: utf-8

from nwpc_graphics.systems.grapes_gfs_gmf.plotter import BasePlotter


class FcAeuaPlotter(BasePlotter):
def __init__(self, task: dict, work_dir: str, config: dict):
BasePlotter.__init__(self, task, work_dir, config)

self.ncl_script_name = None

def _get_image_list(self):
forecast_hour = f"{int(self.forecast_timedelta.total_seconds()) // 3600:03}"
return [{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,10 @@
# coding: utf-8

import datetime

import pytimeparse

from nwpc_graphics.systems.grapes_gfs_gmf.plotter import BasePlotter


class FcAhnePlotter(BasePlotter):
def __init__(self, task: dict, work_dir: str, config: dict):
BasePlotter.__init__(self, task, work_dir, config)

self.ncl_script_name = None

def _get_image_list(self):
forecast_hour = f"{int(self.forecast_timedelta.total_seconds()) // 3600:03}"
return [{
Expand Down
2 changes: 0 additions & 2 deletions nwpc_graphics/systems/grapes_gfs_gmf/plotter.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# coding: utf-8

from pathlib import Path
import datetime
import os
Expand Down
1 change: 0 additions & 1 deletion nwpc_graphics/systems/grapes_gfs_gmf/util.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# coding: utf-8
import pathlib
import inspect

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
setup(
name='nwpc-graphics',

version='0.0.1',
version='0.1.0',

description='NWPC Graphics project.',
long_description=__doc__,
Expand Down

0 comments on commit f66cf60

Please sign in to comment.