Fast-HInt-ppi 0.1.0__tar.gz → 0.1.2__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,5 +1,5 @@
1
1
  """
2
- Main entry point of HInt
2
+ Main entry point of Fast HInt
3
3
 
4
4
  Author: Quentin Rouger
5
5
 
@@ -6,7 +6,7 @@ import os
6
6
  import csv
7
7
  import logging
8
8
  import multiprocessing
9
- import HInt.get_good_inter_pae
9
+ from .get_good_inter_pae import *
10
10
  import gc
11
11
  import pandas as pd
12
12
  import json
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Fast_HInt-ppi
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: A tool to find homologous interactions and speed up AlphaFold-based structural modeling.
5
5
  Home-page: https://github.com/Qrouger/HInt
6
6
  Author: Quentin Rouger
@@ -1,7 +1,7 @@
1
1
  README.md
2
2
  setup.py
3
+ Fast_HInt/Fast_HInt.py
3
4
  Fast_HInt/File_proteins.py
4
- Fast_HInt/HInt.py
5
5
  Fast_HInt/Scoring_HInt.py
6
6
  Fast_HInt/Utils_HInt.py
7
7
  Fast_HInt/__init__.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ Fast_HInt = Fast_HInt.Fast_HInt:main
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Fast_HInt-ppi
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: A tool to find homologous interactions and speed up AlphaFold-based structural modeling.
5
5
  Home-page: https://github.com/Qrouger/HInt
6
6
  Author: Quentin Rouger
@@ -4,7 +4,7 @@ from setuptools import setup
4
4
 
5
5
  setup(
6
6
  name='Fast_HInt-ppi',
7
- version='0.1.0',
7
+ version='0.1.2',
8
8
  description=(
9
9
  'A tool to find homologous interactions and speed up AlphaFold-based structural modeling.'
10
10
  ),
@@ -35,5 +35,5 @@ setup(
35
35
  'torch>=1.6',
36
36
  'gemmi'
37
37
  ],
38
- entry_points={'console_scripts': ['HInt=HInt.HInt:main',],}
38
+ entry_points={'console_scripts': ['Fast_HInt=Fast_HInt.Fast_HInt:main',],}
39
39
  )
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- HInt = HInt.HInt:main
File without changes
File without changes