File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1- """Economic Complexity
1+ """Economic Complexity calculations module.
22
33This module contains functions to ease the calculation of Economic Complexity values.
44"""
1818from .rca import rca
1919from .subnational import complexity_subnational
2020
21- __version_info__ = ("0" , "2 " , "4 " )
21+ __version_info__ = ("0" , "3 " , "0 " )
2222__version__ = "." .join (__version_info__ )
2323
2424__all__ = (
25- "rca" ,
2625 "complexity" ,
26+ "complexity_subnational" ,
27+ "cross_proximity" ,
28+ "cross_relatedness" ,
2729 "distance" ,
2830 "opportunity_gain" ,
31+ "peii" ,
32+ "pgi" ,
2933 "proximity" ,
34+ "rca" ,
3035 "relatedness" ,
31- "cross_proximity" ,
32- "cross_relatedness" ,
33- "similarity" ,
34- "pgi" ,
35- "peii" ,
36- "complexity_subnational" ,
3736 "relative_relatedness" ,
37+ "similarity" ,
3838)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44
55[project ]
66name = " economic-complexity"
7- version = " 0.2.4 "
7+ version = " 0.3.0 "
88description = " Functions to calculate Economic Complexity indicators."
99requires-python = " >=3.9, <4.0"
1010dynamic = [ " classifiers" ]
You can’t perform that action at this time.
0 commit comments