-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
128 lines (96 loc) · 2.37 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
# --- Build system configuration
[build-system]
requires = [ "setuptools>=41", "setuptools-scm", ]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm] # this empty section enables the tool
# --- Project Metadata
[project]
name = "dasclients"
dynamic = ["version"] # version is fetched by setuptools-git-versioning
authors = [
{ name="DASDAE org", email="[email protected]" },
]
description = "Extended Client/IO support for DASCore"
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+)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
keywords = ["geophysics", "distributed-acoustic-sensing"]
# --- Dependencies
dependencies = [
"tiledb",
"dascore",
]
[project.optional-dependencies]
test = [
"coverage",
"coveralls",
"pre-commit",
"pytest",
"pytest-codeblocks",
"pytest-cov",
"twine",
]
all = ["dascore[extras]"]
dev = ["dascore[test]"]
# --- URLs for project
[project.urls]
"Bug Tracker" = "https://github.com/DASDAE/dasclients/issues"
"Documentation" = "https://github.com/DASDAE/dasclients"
"Homepage" = "https://github.com/DASDAE"
# --- Entry Points
# --- External tool configuration
[tool.ruff]
# enable certain types of linting
select = ["E", "F", "UP", "RUF"]
# 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"
fixable = ["ALL"]
[tool.ruff.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
# config for docstring parsing
[tool.ruff.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
filterwarnings = [
# Ignore hdf5 warnings from pytables, See pytables #1035
'ignore::Warning:tables:'
]