-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
118 lines (106 loc) · 2.05 KB
/
Copy pathpyproject.toml
File metadata and controls
118 lines (106 loc) · 2.05 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
118
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[options]
install_requires = []
[project]
authors = [
{name = "Jonathan Coney", email = "joncon@noc.ac.uk"},
{name = "James Harle", email = "jdha@noc.ac.uk"}
]
classifiers = [
"License :: OSI Approved :: GPL License",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Oceonography Modelling",
"Topic :: Scientific/Engineering",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9"
]
dependencies = [
"netCDF4",
"numpy",
"xarray",
"xesmf",
"xgcm"
]
description = "NEMO Regional Configuration Toolbox"
dynamic = ["version"]
keywords = [
"Oceanography",
"NEMO"
]
license = {file = "LICENSE"}
name = "pyic"
readme = "README.md"
[project.optional-dependencies]
dev = [
"mypy",
"commit"
]
docs = [
"sphinx",
"sphinx-autoapi",
"sphinx_rtd_theme",
"myst-parser",
"pydata-sphinx-theme"
]
tests = [
"pytest",
"pytest-cov"
]
[project.scripts]
pyic = "pyic.pyic_exe:main"
[project.urls]
documentation = "https://pynemo.readthedocs.io/en/latest/"
repository = "https://github.com/NOC-MSM/pyIC"
[tool.coverage.run]
branch = true
[tool.mypy]
strict = false
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = ["xesmf.*", "xgcm.*"]
[tool.ruff]
# Black line length is 88, but black does not format comments.
line-length = 110
lint.ignore = [
# pydocstyle: Missing Docstrings
"D1",
# pydocstyle: numpy convention
"D107",
"D203",
"D212",
"D213",
"D402",
"D413",
"D415",
"D416",
"D417",
"F401"
]
lint.select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# isort
"I",
# pydocstyle
"D"
]
[tool.setuptools.package-data]
gui = ["*.png", "*.ncml"]
"pyic" = ["*.info"]
"reader.jars" = ["*.jar"]
share = ["epsg"]
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools_scm]
write_to = "src/pyic/version.py"
write_to_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''