-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (71 loc) · 2.44 KB
/
pyproject.toml
File metadata and controls
86 lines (71 loc) · 2.44 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
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
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "smudgeplot"
version = "0.5.4"
description = "Inference of ploidy and heterozygosity structure using whole genome sequencing data"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE.md"]
keywords = ["smudgeplot", "kmer", "ploidy", "genomics", "bioinformatics"]
# Relaxed Python version - works with 3.9+
requires-python = ">=3.9"
authors = [
{name = "Kamil S. Jaron", email = "kj11@sanger.ac.uk"},
{name = "Sam Ebdon", email = "se13@sanger.ac.uk"},
]
maintainers = [
{name = "Kamil Jaron", email = "kj11@sanger.ac.uk"},
{name = "Sam Ebdon", email = "se13@sanger.ac.uk"},
]
# Relaxed dependency versions for broader compatibility
dependencies = [
"numpy>=1.20.0",
"matplotlib>=3.4.0",
"pandas>=1.3.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"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",
"Programming Language :: Python :: 3.14",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.urls]
Homepage = "https://github.com/KamilSJaron/smudgeplot"
Documentation = "https://github.com/KamilSJaron/smudgeplot#readme"
Repository = "https://github.com/KamilSJaron/smudgeplot"
Issues = "https://github.com/KamilSJaron/smudgeplot/issues"
[project.scripts]
smudgeplot = "smudgeplot.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
smudgeplot = ["bin/*"]
[tool.cibuildwheel]
# Skip 32-bit, PyPy, musllinux, and Windows (no Windows support for now)
skip = ["*-win32", "*-win_amd64", "*-manylinux_i686", "pp*", "*-musllinux*"]
build = ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*", "cp314-*"]
environment = { MACOSX_DEPLOYMENT_TARGET = "11.0" }
# Test that the CLI works after building
test-command = "smudgeplot --version"
[tool.cibuildwheel.linux]
# manylinux has gcc available
before-all = "yum install -y gcc || apt-get update && apt-get install -y gcc || true"
[tool.cibuildwheel.macos]
# macOS runners have clang available by default
# Nothing special needed