-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.03 KB
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
# Upload using flit
# Ref: https://pypi.org/project/flit/
# Metadata ref: https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyintdem"
authors = [{name = "Jamal Khan", email = "jamal919@gmail.com"}]
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version", "description"]
requires-python = ">=3.10"
keywords = ["sentinel2", "coastal", "intertidal", "dem", "imageprocessing"]
dependencies = [
"xarray",
"numpy",
"scipy",
"requests",
"matplotlib",
"netcdf4",
"utide",
"cmocean",
"rioxarray",
"tqdm",
"pyproj",
"ipykernel",
"cartopy",
"shapely",
"geopandas",
"pandas",
"scikit-image"
]
[project.urls]
Home = "https://jamal919.github.io/softwares/pyintertidaldem"
Repo = "https://github.com/jamal919/pyIntertidalDEM"
[tool.flit.sdist]
exclude = ["docs", "examples", "notebooks", "scripts", "Dockerfile", "environment*.yml", ".gitignore"]