-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.13 KB
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
[build-system]
requires = [
"setuptools>=69",
"wheel",
"Cython>=3.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "gtfreader"
version = "0.2.0"
description = "Fast Cython-backed parsing for GTF attribute columns."
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Endre Bakken Stovner" },
]
dependencies = [
"pandas>=2.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Cython",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[tool.setuptools]
ext-modules = [
{name = "gtfreader._parser", sources = ["gtfreader/_parser.pyx"]},
]
[tool.setuptools.packages.find]
where = ["."]
include = ["gtfreader*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.cibuildwheel]
build = "cp312-* cp313-*"
skip = "pp* *-musllinux_* *-manylinux_i686"
test-command = "pytest -q {project}/tests"
test-requires = ["pytest"]
[tool.cibuildwheel.linux]
archs = ["x86_64"]