forked from GeoscienceAustralia/geophys_utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (42 loc) · 990 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
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",
"netCDF4",
"gdal",
"affine",
"cartopy",
"matplotlib",
"numexpr",
"owslib",
"pyyaml",
"requests",
"scikit-image",
"scipy",
"shapely",
"unidecode",
"zipstream-new",
]
[project.urls]
"Homepage" = "https://github.com/geoscienceaustralia/geophys_utils"
"Bug Tracker" = "https://github.com/geoscienceaustralia/geophys_utils/issues"
[tool.setuptools]
py-modules = [
'geophys_utils',
]