Skip to content

Commit 8ee60f5

Browse files
Minor tweaks pre-release
1 parent 6695d35 commit 8ee60f5

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

bio2zarr/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
help="Chunk size in the samples dimension",
3232
)
3333

34-
version = click.version_option(version=provenance.__version__)
34+
version = click.version_option(version=f"bio2zarr {provenance.__version__}")
3535

3636

3737
# Note: logging hasn't been implemented in the code at all, this is just

setup.cfg

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ name = bio2zarr
33
author = sgkit Developers
44
author_email = project@pystatgen.org
55
license = Apache
6-
description = FIXME
6+
description = Convert bioinformatics data to Zarr
77
long_description_content_type=text/x-rst
88
long_description =
9-
FIXME
9+
This is an early alpha release for testing and development.
10+
**Do not use in production**
1011
url = https://github.com/pystatgen/bio2zarr
1112
classifiers =
1213
Development Status :: 3 - Alpha
@@ -15,7 +16,6 @@ classifiers =
1516
Intended Audience :: Science/Research
1617
Programming Language :: Python
1718
Programming Language :: Python :: 3
18-
Programming Language :: Python :: 3.8
1919
Programming Language :: Python :: 3.9
2020
Programming Language :: Python :: 3.10
2121
Programming Language :: Python :: 3.11
@@ -25,7 +25,7 @@ classifiers =
2525
packages = bio2zarr
2626
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
2727
include_package_data = True
28-
python_requires = >=3.8
28+
python_requires = >=3.9
2929
install_requires =
3030
numpy
3131
zarr >= 2.10.0, != 2.11.0, != 2.11.1, != 2.11.2
@@ -45,6 +45,8 @@ setup_requires =
4545
console_scripts =
4646
vcf2zarr = bio2zarr.cli:vcf2zarr
4747
plink2zarr = bio2zarr.cli:plink2zarr
48+
# TODO I don't like this name, anything better?
49+
vcf_partition = bio2zarr.cli:vcf_partition
4850

4951
[flake8]
5052
ignore =

0 commit comments

Comments
 (0)