-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
82 lines (71 loc) · 2.04 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
[build-system]
requires = [
"Cython >=3.0",
"numpy >=2.0,<3", # packages built with NumPy 2.x work with both 1.x and 2.x
"pkgconfig",
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["bbi*"]
[project]
name = "pybbi"
description = "Python bindings to the UCSC source for Big Binary Indexed (bigWig/bigBed) files."
requires-python = ">=3.7"
license = {text = "MIT"}
authors = [
{name = "Nezar Abdennur", email = "[email protected]"},
]
keywords = [
"genomics",
"bioinformatics",
"bigwig",
"bigbed",
"bigbinaryindexed",
"bbi",
"ucsc",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"numpy",
]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
version = {attr = "bbi.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[project.optional-dependencies]
test = [
'pytest',
'pandas'
]
[project.urls]
homepage = "https://github.com/nvictus/pybbi"
documentation = "https://github.com/nvictus/pybbi#README.md"
repository = "https://github.com/nvictus/pybbi"
[tool.cibuildwheel]
build = ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*"]
skip = "*-musllinux*"
build-verbosity = 3
[tool.cibuildwheel.linux]
archs = ["x86_64", "aarch64"]
before-all = "yum install -y gcc make zlib-devel openssl-devel libpng-devel"
[tool.cibuildwheel.macos]
archs = ["auto"] # "arm64" needs M1 runner on GitHub Actions
before-all = """
brew install pkg-config openssl libpng # -> /usr/local (x86_64)
"""