-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
87 lines (77 loc) · 1.71 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
[project]
name = "asdf_compression"
description = "Asdf extension to support various compression algorithms"
readme = 'README.rst'
license = { file = 'LICENSE' }
authors = [{ name = 'The ASDF Developers', email = '[email protected]' }]
requires-python = '>=3.9'
classifiers = [
'Development Status :: 5 - Production/Stable',
"License :: OSI Approved :: BSD License",
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
dynamic = [
'version',
]
dependencies = [
"asdf >= 2.15",
]
[project.optional-dependencies]
tests = [
"pytest>=6",
]
blsc = [
"blosc>=1.9.2",
]
lz4f = [
"lz4>=0.10",
]
zstd = [
"zstandard >= 0.21.0",
]
all = [
"asdf_compression[blsc,lz4f,zstd]"
]
[project.urls]
'documentation' = 'https://asdf-compression.readthedocs.io/en/latest'
'repository' = 'https://github.com/asdf-format/asdf-compression'
'tracker' = 'https://github.com/asdf-format/asdf-compression/issues'
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
"setuptools>=60",
"setuptools_scm[toml]>=3.4",
"wheel",
]
[project.entry-points]
'asdf.extensions' = {asdf = 'asdf_compression.extensions:get_extensions'}
[tool.setuptools.packages.find]
include = ["asdf_compression*"]
namespaces = false
[tool.setuptools_scm]
write_to = "asdf_compression/_version.py"
[tool.black]
line-length = 120
force-exclude = '''
^/(
(
\.eggs
| \.git
| \.pytest_cache
| \.tox
| asdf/extern
| build
| dist
)/
)
'''
[tool.pytest.ini_options]
addopts = '--color=yes'
[tool.ruff]
line-length = 120
[tool.codespell]
skip="*.pdf,*.asdf,.tox,.git,docs/_build"