-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 926 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 926 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "temp-data-pipeline"
version = "0.1.0"
description = "Data pipeline for processing temperature data from NOAA"
requires-python = ">=3.10"
dependencies = [
"pandas>=2.0",
"pyarrow>=14.0",
"requests>=2.28",
"numpy>=1.24",
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
"scikit-learn>=1.3",
"xgboost>=2.0.0",
"lightgbm>=4.0.0",
"catboost>=1.2.0",
"jupyter>=1.0.0",
]
[project.scripts]
tempdata = "tempdata.cli:main"
[project.optional-dependencies]
calibration = [
"scipy>=1.11",
]
era5 = [
"cdsapi>=0.6.1",
"xarray>=2023.1.0",
"netCDF4>=1.6.0",
]
dev = [
"pytest>=7.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]