Skip to content

Commit

Permalink
make arpeggio pdbecif >= 1.5 compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
lpravda committed Oct 14, 2020
1 parent 00928fc commit bdc9d25
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arpeggio/core/protein_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import numpy
from Bio import PDB
from Bio.PDB.StructureBuilder import StructureBuilder
from mmCif.mmcifIO import MMCIF2Dict
from pdbecif.mmcif_io import MMCIF2Dict
import openbabel as ob


Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@
],
zip_safe=False,
include_package_data=True,
install_requires=["pdbecif", "numpy", "biopython"],
tests_require=["pytest"],
install_requires=["pdbecif>=1.5", "numpy", "biopython"],
extras_require={
"tests": ["pytest", "pytest-cov"]
},
entry_points={
"console_scripts": ["arpeggio=arpeggio.scripts.process_protein_cli:main"]
},
Expand Down

0 comments on commit bdc9d25

Please sign in to comment.