-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.58 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
[build-system]
requires = ["setuptools >= 40.8.0", "cython >= 3.1.0a1"]
build-backend = "setuptools.build_meta"
[project]
name = "indexed_gzip"
dynamic = ["version"]
description = "Fast random access of gzip files in Python"
readme = {file = "README.md", content-type="text/markdown"}
license = {text = "zlib"}
requires-python = ">=3.7"
maintainers = [{name = "Paul McCarthy", email = "[email protected]"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: zlib/libpng License",
"Programming Language :: C",
"Programming Language :: Cython",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: System :: Archiving :: Compression",
]
[project.urls]
"Repository" = "https://github.com/pauldmccarthy/indexed_gzip"
[project.optional-dependencies]
test = [
"pytest",
"numpy",
"nibabel",
"coverage",
"pytest-cov",
"cython-coverage"
]
[tool.setuptools.packages.find]
include = ["indexed_gzip*"]
[tool.setuptools.dynamic]
version = {attr = "indexed_gzip.__version__"}
[tool.pytest.ini_options]
testpaths = ["indexed_gzip/tests"]
addopts = "-v --cov=indexed_gzip --showlocals"
markers = [
"zran_test: Test the zran.c library",
"indexed_gzip_test: Test the indexed_gzip library",
"nibabel_test: Test interaction between indexed_gzip and nibabel/numpy",
"slow_test: Test which takes a long time"]
[tool.coverage.run]
include = ["indexed_gzip/*"]
omit = ["indexed_gzip/tests/*"]