forked from ecmwf/pdbufr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.59 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61", "setuptools_scm[toml]>=8"]
[project]
authors = [
{name = "European Centre for Medium-Range Weather Forecasts (ECMWF)", email = "software.support@ecmwf.int"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"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 :: Implementation :: CPython",
"Operating System :: OS Independent"
]
dependencies = ["attrs", "eccodes", "pandas"]
description = "Pandas reader for the BUFR format using ecCodes."
dynamic = ["version"]
keywords = ["eccodes", "bufr", "pandas"]
license = {text = "Apache License Version 2.0"}
name = "plbufr"
readme = "README.md"
requires-python = ">= 3.6"
[project.optional-dependencies]
tests = ["flake8", "pytest", "pytest-cov", "requests"]
[project.urls]
Documentation = "https://plbufr.readthedocs.io/en/latest/"
Homepage = "https://github.com/sferics/plbufr"
[tool.coverage.run]
branch = true
[tool.isort]
profile = "black"
[tool.pydocstyle]
add_ignore = ["D1", "D200", "D205", "D400", "D401", "D403"]
convention = "numpy"
[tool.setuptools_scm]
write_to = "src/plbufr/version.py"
write_to_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''