LineageTree 1.4.3__tar.gz → 1.5.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: LineageTree
3
- Version: 1.4.3
3
+ Version: 1.5.0
4
4
  Summary: Lineage tree structure
5
5
  Home-page: https://github.com/leoguignard/LineageTree
6
6
  Author: Léo Guignard
@@ -26,6 +26,8 @@ Description-Content-Type: text/markdown
26
26
  License-File: LICENSE
27
27
  Requires-Dist: scipy>=1.9
28
28
  Requires-Dist: numpy>=1.23
29
+ Requires-Dist: mastodon-reader
30
+ Requires-Dist: matplotlib
29
31
  Provides-Extra: svg
30
32
  Requires-Dist: svgwrite; extra == "svg"
31
33
  Requires-Dist: matplotlib; extra == "svg"
@@ -59,13 +61,6 @@ With LineageTree you can read from:
59
61
  - ASTEC algorithm outputs described in [Guignard, Fiuza et al. 2020](https://doi.org/10.1126/science.aar5663)
60
62
  - and few others
61
63
 
62
- ## Description of the repository
63
-
64
- - src: folder containing the package
65
- - setup.py: Installation script
66
- - README.md: This file
67
- - LICENCE: The licence describing file
68
-
69
64
  ## Basic usage
70
65
 
71
66
  Once installed the library can be called the following way (as an example):
@@ -10,13 +10,6 @@ With LineageTree you can read from:
10
10
  - ASTEC algorithm outputs described in [Guignard, Fiuza et al. 2020](https://doi.org/10.1126/science.aar5663)
11
11
  - and few others
12
12
 
13
- ## Description of the repository
14
-
15
- - src: folder containing the package
16
- - setup.py: Installation script
17
- - README.md: This file
18
- - LICENCE: The licence describing file
19
-
20
13
  ## Basic usage
21
14
 
22
15
  Once installed the library can be called the following way (as an example):
@@ -10,7 +10,7 @@ profile = "black"
10
10
  line_length = 79
11
11
 
12
12
  [tool.bumpver]
13
- current_version = "1.4.3"
13
+ current_version = "1.5.0"
14
14
  version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
15
15
  commit_message = "bump version {old_version} -> {new_version}"
16
16
  commit = true
@@ -32,6 +32,8 @@ packages = find:
32
32
  install_requires =
33
33
  scipy>=1.9
34
34
  numpy>=1.23
35
+ mastodon-reader
36
+ matplotlib
35
37
  python_requires = >=3.8
36
38
  include_package_data = True
37
39
  package_dir =
@@ -0,0 +1,5 @@
1
+ __version__ = "1.5.0"
2
+ from .lineageTree import lineageTree
3
+ from .lineageTreeManager import lineageTreeManager
4
+
5
+ __all__ = (lineageTree, lineageTreeManager)