moducomp 0.7.16__tar.gz → 0.7.17__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.4
2
2
  Name: moducomp
3
- Version: 0.7.16
3
+ Version: 0.7.17
4
4
  Summary: moducomp: metabolic module completeness and complementarity for microbiomes.
5
5
  Keywords: bioinformatics,microbiome,metabolic,kegg,genomics
6
6
  Author-email: "Juan C. Villada" <jvillada@lbl.gov>
@@ -2,7 +2,7 @@
2
2
  moducomp: metabolic module completeness and complementarity for microbiomes.
3
3
  """
4
4
 
5
- __version__ = "0.7.16"
5
+ __version__ = "0.7.17"
6
6
  __author__ = "Juan C. Villada"
7
7
  __email__ = "jvillada@lbl.gov"
8
8
  __title__ = "moducomp"
@@ -58,3 +58,6 @@ test = "python -m moducomp test --ncpus 2 --calculate-complementarity 2"
58
58
  download-eggnog-data = "python -m moducomp download-eggnog-data"
59
59
  pipeline = "python -m moducomp pipeline --help"
60
60
  analyze_ko_matrix = "python -m moducomp analyze-ko-matrix --help"
61
+
62
+ [tool.flit.sdist]
63
+ include = ["scripts/download_eggnog_data.py"]
@@ -1,5 +1,5 @@
1
1
  context:
2
- version: 0.7.16
2
+ version: 0.7.17
3
3
 
4
4
  package:
5
5
  name: moducomp
@@ -7,11 +7,12 @@ package:
7
7
 
8
8
  source:
9
9
  - url: https://pypi.org/packages/source/m/moducomp/moducomp-${{ version }}.tar.gz
10
- sha256: 917f8ebcba65b5607985fa5fdd7fc0823cd3edb401cc34e2efa0d6f9e650a62b
10
+ sha256: d3ea4bc92818b50eebea0339c25398145549750dc10a35b236111e0d680ebea7
11
11
 
12
12
  build:
13
13
  script:
14
14
  - ${{ PYTHON }} -m pip install .
15
+ - install -m 0755 scripts/download_eggnog_data.py ${{ PREFIX }}/bin/download_eggnog_data.py
15
16
  python:
16
17
  entry_points:
17
18
  - moducomp = moducomp.moducomp:app
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env python3
2
+ """Wrapper for eggNOG-mapper data download via moducomp."""
3
+
4
+ from moducomp.moducomp import download_eggnog_data_cli
5
+
6
+
7
+ if __name__ == "__main__":
8
+ download_eggnog_data_cli()
File without changes
File without changes
File without changes
File without changes