-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 907 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 907 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyTCR"
dynamic = ["version"]
description = "A model for tropical cyclone rainfall"
authors = [
{name = "Phong Le", email = "levuvietphong@gmail.com"}
]
readme = "README-pypi.md"
requires-python = ">=3.11"
dependencies = [
"cartopy",
"colorcet",
"geopandas",
"jupyter",
"matplotlib",
"netcdf4",
"numpy",
"pyproj",
"requests",
"scipy",
"shapely",
"xarray",
"beautifulsoup4",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.hatch.build.targets.wheel]
only-include = ["tcr", "data"]
[tool.hatch.build.targets.wheel.sources]
"tcr" = "tcr"
"data" = "tcr/data"
[tool.hatch.version]
path = "tcr/__init__.py" # This tells Hatch where to find the version