-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2edadb6
commit 02153b4
Showing
14 changed files
with
128 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
PYTHON_VERSIONS=( | ||
cp312-cp312 | ||
cp311-cp311 | ||
cp310-cp310 | ||
cp39-cp39 | ||
cp38-cp38 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
[build-system] | ||
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "tszip" | ||
authors = [ | ||
{name = "Tskit Developers", email = "admin@tskit.dev"}, | ||
] | ||
description = "Compression utilities for tree sequences" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
license = {text = "MIT"} | ||
classifiers = [ | ||
"Programming Language :: Python", | ||
"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 :: Only", | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Other Environment", | ||
"Intended Audience :: Science/Research", | ||
"Operating System :: POSIX", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"License :: OSI Approved :: MIT License", | ||
] | ||
keywords = ["tree sequence", "tskit"] | ||
dependencies = [ | ||
"numpy", | ||
"humanize", | ||
"tskit>=0.3.3", | ||
"numcodecs>=0.6.4", | ||
"zarr<3", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Homepage = "http://pypi.python.org/pypi/tszip" | ||
Documentation = "https://tszip.readthedocs.io/en/latest/" | ||
Changelog = "https://tszip.readthedocs.io/en/latest/changelog.html" | ||
"Bug Tracker" = "https://github.com/tskit-dev/tszip/issues" | ||
GitHub = "https://github.com/tskit-dev/tszip/" | ||
|
||
[project.scripts] | ||
tszip = "tszip.cli:tszip_main" | ||
tsunzip = "tszip.cli:tsunzip_main" | ||
|
||
[tool.setuptools] | ||
packages = ["tszip"] | ||
include-package-data = true | ||
|
||
[tool.setuptools_scm] | ||
write_to = "tszip/_version.py" | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "-n 4" | ||
testpaths = ["tests"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
humanize==4.8.0 | ||
jupyter-book==0.15.1 | ||
humanize==4.10.0 | ||
jupyter-book==1.0.2 | ||
numcodecs==0.12.1 | ||
sphinx-issues==3.0.1 | ||
sphinx-issues==4.1.0 | ||
sphinx-argparse==0.4.0 | ||
setuptools_scm==8.0.4 | ||
tskit==0.5.6 | ||
zarr==2.16.1 | ||
setuptools_scm==8.1.0 | ||
tskit==0.5.8 | ||
zarr==2.18.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
humanize==4.8.0 | ||
h5py==3.7.0 | ||
msprime==1.2.0 | ||
pytest==7.4.2 | ||
pytest-cov==4.1.0 | ||
pytest-xdist==3.3.1 | ||
tskit==0.5.6 | ||
zarr==2.16.1 | ||
humanize==4.10.0 | ||
h5py==3.11.0 | ||
msprime==1.3.2 | ||
pytest==8.2.2 | ||
pytest-cov==5.0.0 | ||
pytest-xdist==3.6.1 | ||
tskit==0.5.8 | ||
zarr==2.18.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,6 @@ sphinx_rtd_theme | |
sphinx-issues | ||
setuptools_scm | ||
tskit | ||
zarr | ||
zarr<3 | ||
msprime | ||
humanize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters