File: pyproject.toml

package info (click to toggle)
python-pysam 0.23.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,468 kB
  • sloc: ansic: 158,936; python: 8,604; sh: 338; makefile: 264; perl: 41
file content (41 lines) | stat: -rw-r--r-- 1,000 bytes parent folder | download
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
[project]
name = "pysam"
description = "Package for reading, manipulating, and writing genomic data"
license = { text = "MIT License" }
authors = [
 { name = "Andreas Heger", email = "andreas.heger@gmail.com"}
]
requires-python = ">=3.6"

dynamic = [
    "classifiers",
    "readme",
    "version",
]

[project.urls]
"Documentation" = "https://pysam.readthedocs.io/"
"Release notes" = "https://pysam.readthedocs.io/en/stable/release.html"

[build-system]
requires = ["setuptools>=59.0", "Cython>=0.29.12,<4"]
build-backend = "setuptools.build_meta:__legacy__"

[tool.cibuildwheel]
before-all = "{project}/devtools/install-prerequisites.sh"
# Necessary until we build libhts.a out-of-tree from within build_temp
before-build = "make -C {project}/htslib distclean"

test-requires = ["pytest"]
test-command = "REF_PATH=: pytest {project}/tests"

[tool.tox]
legacy_tox_ini = """
    [tox]
    envlist = py36, py311

    [testenv]
    deps = pytest
    setenv = REF_PATH=:
    commands = pytest tests
"""