-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (41 loc) · 1003 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
43
44
45
46
47
48
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-vv -s"
testpaths = [
"pygribjump/tests"
]
# pyproject.toml
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pygribjump"
description = "Python interface to GribJump"
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version"]
authors = [
{ name = "ECMWF", email = "software.support@ecmwf.int" }
]
urls = { "Home" = "https://github.com/ecmwf/gribjump" }
dependencies = [
"cffi~=1.17",
"numpy~=1.26",
"pytest~=8.3",
"setuptools~=75.1",
"findlibs~=0.0.5",
]
[project.optional-dependencies]
dev = [
"pyyaml",
"pyfdb",
]
[tool.setuptools.dynamic]
version = { file = ["VERSION"] }
[tool.setuptools]
packages = ["pygribjump"]
package-dir = { "pygribjump" = "./pygribjump/src/pygribjump" }
include-package-data = true
zip-safe = false
[tool.setuptools.package-data]
"pygribjump" = ["VERSION", "pygribjump/src/pygribjump/gribjump_c.h"]