-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
199 lines (163 loc) · 4.23 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# --- Build system configuration
[build-system]
requires = [ "setuptools>=41", "setuptools-scm", "scikit-build"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools]
include-package-data = true
packages = ["dascore"]
[tool.setuptools_scm] # this empty section enables the tool
# --- Project Metadata
[project]
name = "dascore"
dynamic = ["version"] # version is fetched by setuptools-git-versioning
authors = [
{ name="Derrick Chambers", email="[email protected]" },
]
description = "A python library for distributed fiber optic sensing"
readme = "readme.md"
license = { file="docs/LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = ["geophysics", "distributed-acoustic-sensing"]
# --- Dependencies
dependencies = [
"h5py",
"matplotlib>=3.5",
"numpy>=1.24",
"packaging",
"pandas>=2.0",
"pooch>=1.2",
"pydantic>2.1",
"rich",
"scipy>=1.11.0",
"tables>=3.7",
"typing_extensions",
"pint",
"segyio",
]
[project.optional-dependencies]
extras = [
"xarray",
"findiff",
"obspy",
"numba",
]
docs = [
"jinja2",
"ipywidgets",
"tabulate",
]
test = [
"coverage",
"coveralls",
"pre-commit",
"pytest",
"pytest-codeblocks",
"pytest-cov",
"twine",
]
profile = [
"asv",
"typer",
]
all = ["dascore[extras]"]
dev = ["dascore[test]", "dascore[docs]", "dascore[profile]", "dascore[extras]"]
# --- URLs for project
[project.urls]
"Bug Tracker" = "https://github.com/DASDAE/dascore/issues"
"Documentation" = "https://dascore.org"
"Homepage" = "https://dascore.org"
# --- Entry Points
[project.entry-points."dascore.fiber_io"]
APSENSING__V10 = "dascore.io.ap_sensing.core:APSensingV10"
DASDAE__V1 = "dascore.io.dasdae.core:DASDAEV1"
DASHDF5__V1 = "dascore.io.dashdf5.core:DASHDF5"
H5SIMPLE__V1_0 = "dascore.io.h5simple.core:H5Simple"
FEBUS__V1 = "dascore.io.febus.core:Febus1"
FEBUS__V2 = "dascore.io.febus.core:Febus2"
NEUBREXRFS__V1 = "dascore.io.neubrex:NeubrexRFSV1"
NEUBREXDAS__V1 = "dascore.io.neubrex:NeubrexDASV1"
OPTODAS__V8 = "dascore.io.optodas.core:OptoDASV8"
PICKLE = "dascore.io.pickle.core:PickleIO"
PRODML__V2_0 = "dascore.io.prodml.core:ProdMLV2_0"
PRODML__V2_1 = "dascore.io.prodml.core:ProdMLV2_1"
SENTEK__V5 = "dascore.io.sentek.core:SentekV5"
TDMS__V4713 = "dascore.io.tdms.core:TDMSFormatterV4713"
TERRA15__V4 = "dascore.io.terra15.core:Terra15FormatterV4"
TERRA15__V5 = "dascore.io.terra15.core:Terra15FormatterV5"
TERRA15__V6 = "dascore.io.terra15.core:Terra15FormatterV6"
SILIXA_H5__V1 = "dascore.io.silixah5:SilixaH5V1"
SEGY__V2 = "dascore.io.segy.core:SegyV2"
RSF__V1 = "dascore.io.rsf.core:RSFV1"
WAV = "dascore.io.wav.core:WavIO"
XMLBINARY__V1 = "dascore.io.xml_binary.core:XMLBinaryV1"
# --- External tool configuration
[tool.ruff]
line-length = 88
# enable certain types of linting
lint.select = [
"E",
"F",
"UP",
"RUF",
"I001",
"D",
"FA",
"T",
"N",
"NPY",
"NPY201",
]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
"__init__.py"
]
# lowest python version supported
target-version = "py310"
lint.fixable = ["ALL"]
# List of codes to ignore
lint.ignore = ["D105", "D107", "D401", "D205", "D200", "D400"]
[tool.ruff.lint.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
# config for docstring parsing
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
filterwarnings = [
# Ignore hdf5 warnings from pytables, See pytables #1035
'ignore::Warning:tables:'
]
[tool.ruff.format]
# Use `\n` line endings for all files
line-ending = "lf"