-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
64 lines (52 loc) · 1.08 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
58
59
60
61
62
63
64
[build-system]
requires = [
"setuptools >= 61.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "pyfdb"
dynamic = ["version"]
description="Python interface to FDB"
keywords = [
"python",
"fdb",
"tools",
]
license = { file = "LICENSE" }
authors = [
{ name = "European Centre for Medium-Range Weather Forecasts (ECMWF)", email = "software.support@ecmwf.int" },
]
urls.Documentation = "https://github.com/ecmwf/pyfdb"
urls.Homepage = "https://github.com/ecmwf/pyfdb"
urls.Issues = "https://github.com/ecmwf/pyfdb/issues"
urls.Repository = "https://github.com/ecmwf/pyfdb"
requires-python = ">=3.9"
dependencies = [
"cffi",
"findlibs",
"eccodes>=1.5.0"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-flakes",
]
dev = [
"tox>=4.19",
"isort",
"black",
"flake8",
]
[tool.setuptools.packages.find]
where = ["src", "tests"]
[tool.setuptools.package-data]
pyfdb = ["processed_fdb.h"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
skip_glob=".*"
skip = ["setup.py"]
src_paths = ["src", "tests"]