@@ -3,10 +3,11 @@ name = bio2zarr
3
3
author = sgkit Developers
4
4
author_email = project@pystatgen.org
5
5
license = Apache
6
- description = FIXME
6
+ description = Convert bioinformatics data to Zarr
7
7
long_description_content_type =text/x-rst
8
8
long_description =
9
- FIXME
9
+ This is an early alpha release for testing and development.
10
+ **Do not use in production**
10
11
url = https://github.com/pystatgen/bio2zarr
11
12
classifiers =
12
13
Development Status :: 3 - Alpha
@@ -15,7 +16,6 @@ classifiers =
15
16
Intended Audience :: Science/Research
16
17
Programming Language :: Python
17
18
Programming Language :: Python :: 3
18
- Programming Language :: Python :: 3.8
19
19
Programming Language :: Python :: 3.9
20
20
Programming Language :: Python :: 3.10
21
21
Programming Language :: Python :: 3.11
@@ -25,7 +25,7 @@ classifiers =
25
25
packages = bio2zarr
26
26
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
27
27
include_package_data = True
28
- python_requires = >=3.8
28
+ python_requires = >=3.9
29
29
install_requires =
30
30
numpy
31
31
zarr >= 2.10.0, != 2.11.0, != 2.11.1, != 2.11.2
@@ -45,6 +45,8 @@ setup_requires =
45
45
console_scripts =
46
46
vcf2zarr = bio2zarr.cli:vcf2zarr
47
47
plink2zarr = bio2zarr.cli:plink2zarr
48
+ # TODO I don't like this name, anything better?
49
+ vcf_partition = bio2zarr.cli:vcf_partition
48
50
49
51
[flake8]
50
52
ignore =
0 commit comments