-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
56 lines (50 loc) · 1.25 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pyasdf"
authors = [
{name = "Lion Krischer", email = "[email protected]"},
]
description = "Python module for the Adaptable Seismic Data Format (ASDF)."
readme = "README.md"
requires-python = ">=3.7"
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"colorama",
"dill",
"h5py",
"numpy",
"obspy>=1.2.1",
"packaging",
"prov",
]
dynamic = ["version"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
[tool.black]
line-length = 79
target_version = ['py37']
[tool.ruff]
select = ["E", "F", "W", "UP"]
ignore = [
# is/is not instead of ==/!=
"E711",
# Yield from.
"UP028",
# f-strings instead of percent format.
"UP031"
]