Skip to content

Commit

Permalink
Metadata updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarshall committed Oct 2, 2023
1 parent 3590820 commit 586a86f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- os: macos
#build: "cp36-* cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*"
# (also undo CIBW_ARCHS_LINUX below)
build: "cp310-* cp311-*"
build: "cp310-*"

- os: ubuntu
build: "cp38-manylinux_x86_64"
Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[project]
name = "pysam"
description = "pysam - a python module for reading, manipulating and writing genomic data sets."
description = "Package for reading, manipulating, and writing genomic data"
license = { text = "MIT License" }
version = "0.22.0rc2"
authors = [
{ name = "Andreas Heger", email = "andreas.heger@gmail.com"}
]
Expand All @@ -11,8 +10,13 @@ requires-python = ">=3.6"
dynamic = [
"classifiers",
"readme",
"version",
]

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

[build-system]
requires = ["setuptools>=59.0", "Cython>=0.29.12,<4"]
build-backend = "setuptools.build_meta:__legacy__"
Expand Down
2 changes: 1 addition & 1 deletion pysam/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pysam versioning information
__version__ = "0.22.0rc2"
__version__ = "0.22.0rc3"

__samtools_version__ = "1.18"
__bcftools_version__ = "1.18"
Expand Down
9 changes: 2 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /usr/bin/python

'''pysam --- a Python module for reading, manipulating and writing
'''pysam --- a Python package for reading, manipulating, and writing
genomic data sets.
pysam is a lightweight wrapper of the HTSlib API and provides facilities
Expand All @@ -11,11 +11,6 @@
This module provides a low-level wrapper around HTSlib's C API using Cython
and a high-level API for convenient access to the data within standard genomic
file formats.
See:
http://www.htslib.org
https://github.com/pysam-developers/pysam
https://pysam.readthedocs.io
'''

import collections
Expand Down Expand Up @@ -673,7 +668,7 @@ def prebuild_libcsamtools(ext, force):
metadata = {
'name': "pysam",
'version': get_pysam_version(),
'description': "pysam",
'description': "Package for reading, manipulating, and writing genomic data",
'long_description': __doc__,
'long_description_content_type': "text/x-rst",
'author': "Andreas Heger",
Expand Down

0 comments on commit 586a86f

Please sign in to comment.