-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
42 lines (42 loc) · 1.07 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
[project]
name = "geophys_utils"
version = "0.1.0"
authors = [
{ name="Alex Ip", email="[email protected]" },
{ name="Andrew Turner", email="[email protected]" },
]
maintainers = [
{ name="Geoscience Australia", email="[email protected]" },
]
description = "Geophysics data access utilities"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy==1.24.3",
"netCDF4==1.6.4",
"gdal==3.6.2",
"affine==2.3.0",
"cartopy==0.18.0",
"matplotlib==3.7.1",
"numexpr==2.8.4",
"owslib==0.24.1",
"pyyaml==6.0",
"requests==2.29.0",
"scikit-image==0.19.3",
"scipy==1.10.1",
"shapely==2.0.1",
"unidecode==1.3.6",
"zipstream-new==1.1.8",
]
[project.urls]
"Homepage" = "https://github.com/geoscienceaustralia/geophys_utils"
"Bug Tracker" = "https://github.com/geoscienceaustralia/geophys_utils/issues"
[tool.setuptools]
py-modules = [
'geophys_utils',
]