-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update packaging * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * hack install * Update test.yml * quotes * Update test.yml quotes * Update test.yml all --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
ad333cc
commit e565105
Showing
6 changed files
with
64 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,63 @@ | ||
[project] | ||
name="PVNet" | ||
description = "PVNet" | ||
authors = [{name="Peter Dudfield", email="[email protected]"}] | ||
dynamic = ["version", "readme"] | ||
license={file="LICENCE"} | ||
|
||
dependencies = [ | ||
"ocf_datapipes>=3.3.6", | ||
"ocf_ml_metrics>=0.0.11", | ||
"numpy", | ||
"pandas", | ||
"matplotlib", | ||
"xarray", | ||
"ipykernel", | ||
"h5netcdf", | ||
"torch>=2.0.0", | ||
"lightning>=2.0.1", | ||
"torchvision", | ||
"pytest", | ||
"pytest-cov", | ||
"typer", | ||
"sqlalchemy", | ||
"fsspec[s3]", | ||
"wandb", | ||
"huggingface-hub", | ||
"tensorboard", | ||
"tqdm", | ||
"omegaconf", | ||
"hydra-core", | ||
"python-dotenv", | ||
"hydra-optuna-sweeper", | ||
"rich", | ||
"gcsfs",# gcsfs is only needed when getting data from Google Cloud Storage | ||
] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "pvnet.__version__"} | ||
readme = {file = "README.md"} | ||
|
||
[tool.setuptools.package-dir] | ||
"PVNet" = "pvnet" | ||
|
||
[project.optional-dependencies] | ||
dev=[ | ||
"pvlive-api @ git+https://github.com/SheffieldSolar/PV_Live-API", | ||
"black", | ||
"flake8", | ||
"isort", | ||
"mypy", | ||
"pre-commit", | ||
"pytest", | ||
"pytest-cov", | ||
] | ||
all_models=[ | ||
"pytorch-tabnet", | ||
"efficientnet_pytorch" | ||
] | ||
all=["PVNet[dev,all_models]"] | ||
|
||
[tool.mypy] | ||
exclude = [ | ||
"^tests/", | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.