Skip to content

Commit 0c5e65f

Browse files
semenkoclaude
andcommitted
Release v2.2: add PyPI classifiers to fix Python version badge
Add comprehensive classifiers (Python versions, license, topics, OS support) so PyPI displays the correct Python badge and metadata. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3aae478 commit 0c5e65f

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

pyproject.toml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
[project]
22
name = "bam2tensor"
3-
version = "2.1"
3+
version = "2.2"
44
description = "Convert bisulfite-seq and EM-seq BAM files to sparse tensor representations of DNA methylation"
55
authors = [{ name = "Nick Semenkovich", email = "semenko@alum.mit.edu" }]
66
license = "MIT"
77
readme = "README.md"
88
requires-python = ">=3.10"
9-
classifiers = ["Development Status :: 5 - Production/Stable"]
9+
classifiers = [
10+
"Development Status :: 5 - Production/Stable",
11+
"Intended Audience :: Science/Research",
12+
"License :: OSI Approved :: MIT License",
13+
"Operating System :: MacOS",
14+
"Operating System :: POSIX :: Linux",
15+
"Programming Language :: Python :: 3",
16+
"Programming Language :: Python :: 3.10",
17+
"Programming Language :: Python :: 3.11",
18+
"Programming Language :: Python :: 3.12",
19+
"Programming Language :: Python :: 3.13",
20+
"Topic :: Scientific/Engineering :: Bio-Informatics",
21+
"Topic :: Scientific/Engineering :: Medical Science Apps.",
22+
"Typing :: Typed",
23+
]
1024
dependencies = [
1125
"click>=8.0.1",
1226
"numpy>=1.26.0",

src/bam2tensor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@
5050
- https://mcwdsi.github.io/bam2tensor for full documentation
5151
"""
5252

53-
__version__ = "2.1"
53+
__version__ = "2.2"

0 commit comments

Comments
 (0)