-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.79 KB
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=61", "setuptools-scm[toml]>=8" ]
[project]
name = "pdbufr"
description = "Pandas reader for the BUFR format using ecCodes."
readme = "README.md"
keywords = [ "bufr", "eccodes", "pandas" ]
license = { text = "Apache License Version 2.0" }
authors = [
{ name = "European Centre for Medium-Range Weather Forecasts (ECMWF)", email = "software.support@ecmwf.int" },
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
dynamic = [ "version" ]
dependencies = [ "attrs", "eccodes", "pandas", "pint" ]
optional-dependencies.dev = [
"pdbufr[docs,tests]",
]
optional-dependencies.docs = [
"nbsphinx",
"pygments>=2.6.1",
"sphinx>=7.3.7",
"sphinx-copybutton",
"sphinx-issues",
"sphinx-rtd-theme",
]
optional-dependencies.tests = [ "flake8", "nbconvert", "nbformat", "pytest", "pytest-cov", "requests" ]
urls.Documentation = "https://pdbufr.readthedocs.io/en/latest/"
urls.Homepage = "https://github.com/ecmwf/pdbufr"
[tool.setuptools_scm]
write_to = "src/pdbufr/version.py"
write_to_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''
[tool.isort]
profile = "black"
[tool.coverage.run]
branch = true
[tool.pydocstyle]
add_ignore = [ "D1", "D200", "D205", "D400", "D401", "D403" ]
convention = "numpy"