-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (37 loc) · 1.03 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
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "netcdf-isotherms"
version = "0.0.1"
authors = [
{ name="Olga Lyashevska", email="[email protected]" },
]
description = "A small python package to generate isotherms from netcdf files"
keywords = [
"netcdf",
"isotherms",
"sst",
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"netCDF4 == x.x.x",
"matplotlib == x.x.x",
"numpy == x.x.x",
"pandas == x.x.x",
"mpl_toolkits.basemap == x.x.x",
]
[project.urls]
Repository = "https://github.com/lyashevska/netcdf-isotherm"
Issues = "https://github.com/lyashevska/netcdf-isotherm/issues"
Changelog = "https://github.com/lyashevska/netcdf-isotherm/CHANGELOG.md"
[tool.pytest.ini_options]
testpaths = ["tests"]