generated from openclimatefix/ocf-template
-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e6d8be
commit c503578
Showing
4 changed files
with
62 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "ocf_data_sampler" | ||
version = "0.0.16" | ||
license = { file = "LICENSE" } | ||
readme = "README.md" | ||
description = "Sample from weather data for renewable energy prediction" | ||
authors = [ | ||
{name = "James Fulton, Peter Dudfield, and the Open Climate Fix team"}, | ||
{email = "[email protected]"} | ||
] | ||
|
||
maintainers = [ | ||
{name="Open Climate Fix Ltd"} | ||
] | ||
|
||
dependencies = [ # Migration from requirements.txt | ||
"numpy", | ||
"pandas", | ||
"xarray", | ||
"zarr", | ||
"dask", | ||
"ocf_blosc2", | ||
"ocf_datapipes==3.3.39", | ||
"pvlib" | ||
] | ||
|
||
keywords = [ # I've added some keywords, but please provide feedback if you'd like them changed! | ||
"weather data", | ||
"renewable energy prediction", | ||
"sample weather data" | ||
] | ||
|
||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.8", # Sourced from .readthedocs.yml (please advise if this is wrong!) | ||
"Operating System :: POSIX :: Linux", # Sourced from .github/workflows/workflows.yaml | ||
] | ||
requires-python = ">=3.8" | ||
|
||
[project.optional-dependencies] | ||
docs = [ | ||
"mkdocs>=1.2", | ||
"mkdocs-material>=8.0" | ||
] | ||
|
||
[project.urls] | ||
homepage = "https://github.com/openclimatefix" | ||
repository = "https://github.com/openclimatefix/ocf-data-sampler" | ||
|
||
[tool.setuptools] | ||
packages = { find = {} } # Replaces the find_packages() in the setup.py | ||
include-package-data = true | ||
|
||
[tool.ruff] | ||
line-length = 100 | ||
exclude = ["tests","data","scripts"] |
This file was deleted.
Oops, something went wrong.