-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
97 lines (86 loc) · 2.07 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
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
[build-system]
requires = [
"setuptools >= 48",
"setuptools_scm[toml] >= 6.2",
"setuptools_scm_git_archive",
"wheel >= 0.29.0",
]
build-backend = 'setuptools.build_meta'
[project]
name="oceansdb"
dynamic = ["version"]
description="Subsample ocean climatologies and reference data"
readme = "README.rst"
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["WOA", "World Ocean Atlas", "climatology", "oceanography",
"ETOPO", "temperature", "salinity", "bathymetry", "CARS"]
authors = [
{email = "guilherme@castelao.net"},
{name = "Guilherme Castelao"}
]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering"
]
dependencies = [
"numpy>=1.14",
"scipy>=1.1",
"netCDF4>=1.2.4",
"supportdata>=0.1.3",
]
[project.optional-dependencies]
dev = [
"twine >= 1.8.1",
"sphinx>=1.5.1",
]
test = [
"hypothesis >= 6.29.3",
"pytest >= 5.0.0",
"pytest-cov[all]",
"pip >= 9.0.1",
"flake8 >= 3.2.1",
"tox >= 2.3.3",
"coverage >= 4.2",
"supportdata >= 0.1.2",
]
[project.urls]
repository = "https://github.com/castelao/oceansdb"
[tool.black]
line-length = 88
[tool.setuptools_scm]
write_to = "oceansdb/version.py"
git_describe_command = "git describe --dirty --tags --long --match 'v*' --first-parent"
[tool.ruff]
select = ["A", "I", "W"]
ignore = []
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = []
unfixable = []
# Exclude a variety of commonly ignored directories.
exclude = [
".eggs",
".git",
".mypy_cache",
".nox",
".ruff_cache",
".tox",
"__pypackages__",
"_build",
"build",
"dist",
]
per-file-ignores = {}
line-length = 88
# Assume Python 3.7.
target-version = "py37"
[tool.ruff.pydocstyle]
convention = "numpy"