taxoniumtools 2.0.222__tar.gz → 2.0.224__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/PKG-INFO +2 -2
  2. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools/_version.py +9 -4
  3. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools.egg-info/PKG-INFO +2 -2
  4. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/README.md +0 -0
  5. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/pyproject.toml +0 -0
  6. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/setup.cfg +0 -0
  7. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools/__init__.py +0 -0
  8. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools/__main__.py +0 -0
  9. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools/newick_to_taxonium.py +0 -0
  10. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools/parsimony_pb2.py +0 -0
  11. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools/usher_to_taxonium.py +0 -0
  12. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools/ushertools.py +0 -0
  13. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools/utils.py +0 -0
  14. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools/view_taxonium.py +0 -0
  15. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools.egg-info/SOURCES.txt +0 -0
  16. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools.egg-info/dependency_links.txt +0 -0
  17. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools.egg-info/entry_points.txt +0 -0
  18. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools.egg-info/requires.txt +0 -0
  19. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/src/taxoniumtools.egg-info/top_level.txt +0 -0
  20. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/test_data/hu1.gb +0 -0
  21. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/test_data/mpox.pb +0 -0
  22. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/test_data/mpox_ref.fasta +0 -0
  23. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/test_data/test.nwk +0 -0
  24. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/test_data/test_config.json +0 -0
  25. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/test_data/tfci.meta.tsv.gz +0 -0
  26. {taxoniumtools-2.0.222 → taxoniumtools-2.0.224}/test_data/tfci.pb +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: taxoniumtools
3
- Version: 2.0.222
3
+ Version: 2.0.224
4
4
  Summary: Generate files for taxonium
5
5
  Home-page: https://github.com/theosanderson/taxonium
6
6
  Author: Theo Sanderson
@@ -1,8 +1,13 @@
1
- # file generated by setuptools_scm
1
+ # file generated by setuptools-scm
2
2
  # don't change, don't track in version control
3
+
4
+ __all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
5
+
3
6
  TYPE_CHECKING = False
4
7
  if TYPE_CHECKING:
5
- from typing import Tuple, Union
8
+ from typing import Tuple
9
+ from typing import Union
10
+
6
11
  VERSION_TUPLE = Tuple[Union[int, str], ...]
7
12
  else:
8
13
  VERSION_TUPLE = object
@@ -12,5 +17,5 @@ __version__: str
12
17
  __version_tuple__: VERSION_TUPLE
13
18
  version_tuple: VERSION_TUPLE
14
19
 
15
- __version__ = version = '2.0.222'
16
- __version_tuple__ = version_tuple = (2, 0, 222)
20
+ __version__ = version = '2.0.224'
21
+ __version_tuple__ = version_tuple = (2, 0, 224)
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: taxoniumtools
3
- Version: 2.0.222
3
+ Version: 2.0.224
4
4
  Summary: Generate files for taxonium
5
5
  Home-page: https://github.com/theosanderson/taxonium
6
6
  Author: Theo Sanderson