taxoniumtools 2.0.112__py3-none-any.whl → 2.0.113__py3-none-any.whl

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.
taxoniumtools/_version.py CHANGED
@@ -1,4 +1,16 @@
1
1
  # file generated by setuptools_scm
2
2
  # don't change, don't track in version control
3
- __version__ = version = '2.0.112'
4
- __version_tuple__ = version_tuple = (2, 0, 112)
3
+ TYPE_CHECKING = False
4
+ if TYPE_CHECKING:
5
+ from typing import Tuple, Union
6
+ VERSION_TUPLE = Tuple[Union[int, str], ...]
7
+ else:
8
+ VERSION_TUPLE = object
9
+
10
+ version: str
11
+ __version__: str
12
+ __version_tuple__: VERSION_TUPLE
13
+ version_tuple: VERSION_TUPLE
14
+
15
+ __version__ = version = '2.0.113'
16
+ __version_tuple__ = version_tuple = (2, 0, 113)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: taxoniumtools
3
- Version: 2.0.112
3
+ Version: 2.0.113
4
4
  Summary: Generate files for taxonium
5
5
  Home-page: https://github.com/theosanderson/taxonium
6
6
  Author: Theo Sanderson
@@ -9,7 +9,7 @@ Project-URL: Bug Tracker, https://github.com/theosanderson/taxonium/issues
9
9
  Classifier: Programming Language :: Python :: 3
10
10
  Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Operating System :: OS Independent
12
- Requires-Python: >=3.7
12
+ Requires-Python: >=3.8
13
13
  Description-Content-Type: text/markdown
14
14
  Requires-Dist: treeswift
15
15
  Requires-Dist: alive-progress
@@ -1,14 +1,14 @@
1
1
  taxoniumtools/__init__.py,sha256=iizd2XLvtBHVDz6j82ZWJ2eojVvbTmtJCWQGk5MtqhE,51
2
2
  taxoniumtools/__main__.py,sha256=0-mrc1_4NaJur-6SQXV6vGrJFFDuRRFvqeQvnlOA5l4,25
3
- taxoniumtools/_version.py,sha256=Mdt-NIP_doXj5eOhyROpifEuHHa6sPJZ8eAe71WukJU,164
3
+ taxoniumtools/_version.py,sha256=6PZHsoC9oiwRxEbNwI2JcYP_5p6GT6CKp7uDtKSSADk,415
4
4
  taxoniumtools/newick_to_taxonium.py,sha256=05JMQgmYLEo4nZVGPB0afAlF2s93WE7Ka_jwd0kCw0A,6207
5
5
  taxoniumtools/parsimony_pb2.py,sha256=hE6jWYlgTpUbTS1uTjRKwVgPNO232QIu3LqjpJUlthU,15575
6
6
  taxoniumtools/usher_to_taxonium.py,sha256=RV_jUTHQlmqvIZw0TmbjYforUK0mLnN6u5VdIhgD0MA,11934
7
7
  taxoniumtools/ushertools.py,sha256=duMipZuWfEtfOx-NosZe-6XSIL5YdKHGWKJbM9jM-sQ,16417
8
8
  taxoniumtools/utils.py,sha256=hEibXfM23Bd5bW5BQAT3P3288lEkb2AvXbjhZ2-gqC0,8438
9
9
  taxoniumtools/view_taxonium.py,sha256=LYWBhaXYrmOOrIHI2bBYhqNUw-HZRtYzdvMQb6ZombI,4640
10
- taxoniumtools-2.0.112.dist-info/METADATA,sha256=eNkO4k4u3FHnZ_ufgN1du6oVoZCKizZ5Zr1f7Cca9Sg,2067
11
- taxoniumtools-2.0.112.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
12
- taxoniumtools-2.0.112.dist-info/entry_points.txt,sha256=oIcDnAw81KjfG32-ePuBFvqS_wbLXWB8NmWo61o1LW0,183
13
- taxoniumtools-2.0.112.dist-info/top_level.txt,sha256=EEWGvODb1nR_CiPHUDxcfU4UzxtPnVN4yTywlT3Z0nE,14
14
- taxoniumtools-2.0.112.dist-info/RECORD,,
10
+ taxoniumtools-2.0.113.dist-info/METADATA,sha256=q0O-taSbR_Gkyhy7k7G_xYyWEB690IT7lVpwRPPEGeI,2067
11
+ taxoniumtools-2.0.113.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
12
+ taxoniumtools-2.0.113.dist-info/entry_points.txt,sha256=oIcDnAw81KjfG32-ePuBFvqS_wbLXWB8NmWo61o1LW0,183
13
+ taxoniumtools-2.0.113.dist-info/top_level.txt,sha256=EEWGvODb1nR_CiPHUDxcfU4UzxtPnVN4yTywlT3Z0nE,14
14
+ taxoniumtools-2.0.113.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: bdist_wheel (0.42.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5