generated from openclimatefix/ocf-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
65 lines (56 loc) · 1.54 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ocf_data_sampler"
version = "0.0.29"
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
"torch",
"numpy",
"pandas",
"xarray",
"zarr",
"dask",
"ocf_blosc2",
"pvlib",
"pydantic",
"pyproj",
"pathy",
"pyaml_env",
"pyresample"
]
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"]