-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
40 lines (37 loc) · 1013 Bytes
/
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
[build-system]
requires = [
"setuptools>=65.6.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "popy"
description = "Physical Oversampling in Python"
authors = [
{email = "[email protected]"},
{name = "Kang Sun"}
]
requires-python = ">=3.8"
keywords = ["popy"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"pandas~=1.4", # necessary for Level3_List
"pyyaml>=6.0.1",
"netCDF4~=1.6", # necessary for input/output netcdf data, which is very commonly used
"opencv-python~=4.5.3", # necessary for oversampling instruments with quadrilateral level 2 pixels
"scipy~=1.8",
"scikit-image>=0.20", # necessary for Level3_Data.block_reduce()
]
version = "0.2.2"
[project.optional-dependencies]
h5py = [
"h5py", # necessary for reading level 2 data in he5/h5 format
]
plot = [
"cartopy", # necessary for geospatial plotting
"matplotlib",
]
[tool.setuptools]
py-modules = ["popy"]