-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
67 lines (61 loc) · 1.51 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
66
67
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "lair"
description = "Python package for land-air interactions research, including reading UATAQ data."
authors = [
{name = "James Mineau", email = "[email protected]"},
]
readme = "README.md"
keywords = ["land-air interactions", "research", "uataq", "pollution", "atmospheric science"]
requires-python = ">=3.10"
dependencies = [
"cartopy",
"cf_xarray",
"dask",
"fastkml",
"geopandas",
"lxml", # speeds up fastkml
"matplotlib",
"molmass",
"numpy<2", # numpy 2.0 breaks pytables
"pandas",
"pint-xarray",
"pyproj",
"rioxarray",
"scipy",
"shapely",
"tables",
"typing-extensions", # needed to import Self before 3.11
"xarray",
"xesmf",
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Atmospheric Science"
]
dynamic = ["version"]
[project.optional-dependencies]
met = [
"boto3",
"metpy",
"s3fs",
"siphon",
"synopticpy",
"zarr",
]
[project.urls]
Repository = "https://github.com/jmineau/lair.git"
Issues = "https://github.com/jmineau/lair/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "lair.__version__"}
[tool.setuptools.packages.find]
include = ["lair*"]