Skip to content

Commit

Permalink
yet another attempt to find a package name
Browse files Browse the repository at this point in the history
  • Loading branch information
Naman Jain committed Aug 25, 2024
1 parent 350dca7 commit ff5ed28
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 5 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import gcsfs
import tqdm

from data_transformations import constants, process_data, utils
from netcdf_to_parquet import constants, process_data, utils

logging.basicConfig(
level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "data-transformation"
name = "netcdf-to-parquet"
version = "0.1.0"
description = "Transforms total precipitation NetCDF files into Parquet format."
authors = ["Naman Jain"]
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import gcsfs
import pytest

from data_transformations import constants, utils
from netcdf_to_parquet import constants, utils


@pytest.fixture
Expand Down
2 changes: 1 addition & 1 deletion tests/test_process_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pandas as pd
import pytest

from data_transformations import process_data
from netcdf_to_parquet import process_data

H3_INDEX = "890326233abffff"

Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import gcsfs

from data_transformations import utils
from netcdf_to_parquet import utils


def test_initialize_gcsfs():
Expand Down

0 comments on commit ff5ed28

Please sign in to comment.