Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated setup.cfg #12

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions particle_tracking_manager/models/opendrift/model_opendrift.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,8 @@
import copy
import datetime
import json
import logging
import pathlib

from typing import Optional

import pandas as pd
import yaml

from opendrift.models.larvalfish import LarvalFish
from opendrift.models.leeway import Leeway
from opendrift.models.oceandrift import OceanDrift
Expand Down
6 changes: 0 additions & 6 deletions particle_tracking_manager/the_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,10 @@
import json
import logging
import pathlib
import warnings

from pathlib import Path
from typing import Optional, Union

import cmocean.cm as cmo
import numpy as np
import pandas as pd
import xarray as xr
import yaml

from .cli import is_None

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ quiet = false
color = true

[tool.isort]
known_third_party = ["numpy", "pytest", "setuptools"]
known_third_party = ["numpy", "opendrift", "pandas", "pytest", "setuptools", "xarray"]

[tool.pytest.ini_options]
minversion = "6.0"
Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,13 @@ classifiers =
## Add your email here
author_email = [email protected]


### make sure to fill in your dependencies!
[options]
install_requires =
numpy
requests
opendrift
pandas
xarray
setup_requires=
setuptools_scm
python_requires = >=3.9
Expand Down
Loading