RNApolis 0.3__tar.gz → 0.3.1__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. {RNApolis-0.3/src/RNApolis.egg-info → RNApolis-0.3.1}/PKG-INFO +1 -1
  2. {RNApolis-0.3 → RNApolis-0.3.1}/setup.py +2 -2
  3. {RNApolis-0.3 → RNApolis-0.3.1/src/RNApolis.egg-info}/PKG-INFO +1 -1
  4. {RNApolis-0.3 → RNApolis-0.3.1}/src/RNApolis.egg-info/entry_points.txt +1 -1
  5. {RNApolis-0.3 → RNApolis-0.3.1}/LICENSE +0 -0
  6. {RNApolis-0.3 → RNApolis-0.3.1}/README.md +0 -0
  7. {RNApolis-0.3 → RNApolis-0.3.1}/pyproject.toml +0 -0
  8. {RNApolis-0.3 → RNApolis-0.3.1}/setup.cfg +0 -0
  9. {RNApolis-0.3 → RNApolis-0.3.1}/src/RNApolis.egg-info/SOURCES.txt +0 -0
  10. {RNApolis-0.3 → RNApolis-0.3.1}/src/RNApolis.egg-info/dependency_links.txt +0 -0
  11. {RNApolis-0.3 → RNApolis-0.3.1}/src/RNApolis.egg-info/requires.txt +0 -0
  12. {RNApolis-0.3 → RNApolis-0.3.1}/src/RNApolis.egg-info/top_level.txt +0 -0
  13. {RNApolis-0.3 → RNApolis-0.3.1}/src/rnapolis/annotator.py +0 -0
  14. {RNApolis-0.3 → RNApolis-0.3.1}/src/rnapolis/clashfinder.py +0 -0
  15. {RNApolis-0.3 → RNApolis-0.3.1}/src/rnapolis/common.py +0 -0
  16. {RNApolis-0.3 → RNApolis-0.3.1}/src/rnapolis/metareader.py +0 -0
  17. {RNApolis-0.3 → RNApolis-0.3.1}/src/rnapolis/molecule_filter.py +0 -0
  18. {RNApolis-0.3 → RNApolis-0.3.1}/src/rnapolis/motif_extractor.py +0 -0
  19. {RNApolis-0.3 → RNApolis-0.3.1}/src/rnapolis/parser.py +0 -0
  20. {RNApolis-0.3 → RNApolis-0.3.1}/src/rnapolis/rfam_folder.py +0 -0
  21. {RNApolis-0.3 → RNApolis-0.3.1}/src/rnapolis/tertiary.py +0 -0
  22. {RNApolis-0.3 → RNApolis-0.3.1}/src/rnapolis/transformer.py +0 -0
  23. {RNApolis-0.3 → RNApolis-0.3.1}/src/rnapolis/util.py +0 -0
  24. {RNApolis-0.3 → RNApolis-0.3.1}/tests/test_annotator.py +0 -0
  25. {RNApolis-0.3 → RNApolis-0.3.1}/tests/test_bugfixes.py +0 -0
  26. {RNApolis-0.3 → RNApolis-0.3.1}/tests/test_common.py +0 -0
  27. {RNApolis-0.3 → RNApolis-0.3.1}/tests/test_metareader.py +0 -0
  28. {RNApolis-0.3 → RNApolis-0.3.1}/tests/test_parser.py +0 -0
  29. {RNApolis-0.3 → RNApolis-0.3.1}/tests/test_quadruplexes.py +0 -0
  30. {RNApolis-0.3 → RNApolis-0.3.1}/tests/test_tertiary.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: RNApolis
3
- Version: 0.3
3
+ Version: 0.3.1
4
4
  Summary: A Python library containing RNA-related bioinformatics functions and classes
5
5
  Home-page: https://github.com/tzok/rnapolis-py
6
6
  Author: Tomasz Zok
@@ -5,7 +5,7 @@ with open("README.md") as f:
5
5
 
6
6
  setup(
7
7
  name="RNApolis",
8
- version="0.3",
8
+ version="0.3.1",
9
9
  packages=["rnapolis"],
10
10
  package_dir={"": "src"},
11
11
  author="Tomasz Zok",
@@ -32,7 +32,7 @@ setup(
32
32
  "molecule-filter=rnapolis.molecule_filter:main",
33
33
  "motif-extractor=rnapolis.motif_extractor:main",
34
34
  "transformer=rnapolis.transformer:main",
35
- "rfam-folder=rfam_folder:main",
35
+ "rfam-folder=rnapolis.rfam_folder:main",
36
36
  ]
37
37
  },
38
38
  install_requires=[
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: RNApolis
3
- Version: 0.3
3
+ Version: 0.3.1
4
4
  Summary: A Python library containing RNA-related bioinformatics functions and classes
5
5
  Home-page: https://github.com/tzok/rnapolis-py
6
6
  Author: Tomasz Zok
@@ -4,5 +4,5 @@ clashfinder = rnapolis.clashfinder:main
4
4
  metareader = rnapolis.metareader:main
5
5
  molecule-filter = rnapolis.molecule_filter:main
6
6
  motif-extractor = rnapolis.motif_extractor:main
7
- rfam-folder = rfam_folder:main
7
+ rfam-folder = rnapolis.rfam_folder:main
8
8
  transformer = rnapolis.transformer:main
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes