-
Notifications
You must be signed in to change notification settings - Fork 97
/
pyproject.toml
57 lines (51 loc) · 1.43 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = [
"Cython>=0.29",
"setuptools>=61",
"oldest-supported-numpy ; python_version < '3.9'",
"numpy>=2.0.0rc1,<3 ; python_version >= '3.9'",
]
build-backend = "setuptools.build_meta"
[project]
name = "pygrib"
description = "Python module for reading/writing GRIB files"
readme = "README.md"
authors = [
{name = "Jeff Whitaker", email = "[email protected]"},
]
requires-python = ">=3.7"
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"packaging",
"pyproj",
"numpy",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://jswhit.github.io/pygrib/"
Repository = "https://github.com/jswhit/pygrib"
[tool.check-manifest]
ignore = [
".gitignore",
"src/pygrib/*.c",
]
[tool.pytest.ini_options]
testpaths = ["test"]
doctest_optionflags = ["NORMALIZE_WHITESPACE ELLIPSIS"]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]