-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
118 lines (101 loc) · 2.85 KB
/
Copy pathpyproject.toml
File metadata and controls
118 lines (101 loc) · 2.85 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[build-system]
# Defined by PEP 518
requires = [
"setuptools>=64",
"setuptools_scm[toml]>=7.0",
"wheel",
]
# Defined by PEP 517
build-backend = "setuptools.build_meta"
[project]
name = "ncdata"
authors = [
{name = "Iris Contributors", email = "scitools.pub@gmail.com"}
]
description = "Abstract NetCDF data objects, providing fast data transfer between analysis packages."
requires-python = ">=3.10"
keywords = [
"cf-metadata",
"data-analysis",
"netcdf",
"iris",
"xarray",
]
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dynamic = [
"readme",
"version",
]
# Strictly, dask + netcdf are not core dependencies.
# But almost *any* conceivable use will need them.
# For now, this works in place of a dependencies file, so 'dependencies' is NOT dynamic.
dependencies = ["numpy", "dask", "netCDF4"]
[project.urls]
Code = "https://github.com/SciTools/ncdata"
Discussions = "https://github.com/SciTools/ncdata/discussions"
Documentation = "https://ncdata.readthedocs.io"
Issues = "https://github.com/SciTools/ncdata/issues"
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[tool.setuptools.packages.find]
include = ["ncdata*"]
where = ["lib"]
[tool.setuptools_scm]
version_file = "lib/ncdata/_version.py"
local_scheme = "dirty-tag"
version_scheme = "release-branch-semver"
[tool.black]
line-length = 79
target-version = ['py310']
include = '\.pyi?$'
[tool.isort]
line_length = "79"
profile = "black"
known_local_folder = ["tests"]
known_first_party = "ncdata"
skip = ["lib/ncdata/__init__.py"]
[tool.towncrier]
package = "ncdata"
package_dir = "lib"
directory = "docs/changelog_fragments"
filename = "docs/change_log.rst"
issue_format = "`ISSUE#{issue} <https://github.com/SciTools/ncdata/pull/{issue}>`_"
underlines = ["~", "^", "*", "+"]
[[tool.towncrier.type]]
directory = "feat"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Documentation changes"
showcontent = true
[[tool.towncrier.type]]
directory = "bug"
name = "Bug Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "dev"
name = "Developer and Internal changes"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Developer and Internal changes"
showcontent = true