Skip to content

Commit

Permalink
Merge pull request #5 from mtien/dev
Browse files Browse the repository at this point in the history
New version
  • Loading branch information
benjaminjack authored Nov 29, 2016
2 parents 8faaa18 + 050d726 commit 734feae
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion PeptideBuilder/PeptideBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from Bio.PDB.Structure import *
from Bio.PDB.Vector import *
from Bio.PDB.Entity import*
from Geometry import *
from .Geometry import *
import math, warnings


Expand Down
2 changes: 1 addition & 1 deletion evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from Bio.PDB.Vector import *
from Bio.PDB.Entity import*
import math
import Geometry
from PeptideBuilder import Geometry
import PeptideBuilder
import numpy
from os import path
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@

from setuptools import setup
setup(name = 'PeptideBuilder',
version = '1.0.1',
version = '1.0.2',
description = 'Tools to create peptide PDB files using geometry as input',
author = 'Matthew Z. Tien',
author_email = '[email protected]',
url = 'https://github.com/mtien/PeptideBuilder',
download_url = 'https://github.com/smtien/PeptideBuilder/mypackage/tarball/1.0.1',
download_url = 'https://github.com/mtien/PeptideBuilder/archive/v1.0.2.tar.gz',
platforms = 'Tested on Mac OS X.',
packages = ['PeptideBuilder'],
install_requires=['Biopython']
Expand Down
2 changes: 1 addition & 1 deletion simpleExample.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'''

from __future__ import print_function
import Geometry
from PeptideBuilder import Geometry
import PeptideBuilder


Expand Down
2 changes: 1 addition & 1 deletion unitTests.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
'''

from __future__ import print_function
import Geometry
from PeptideBuilder import Geometry
import PeptideBuilder
import Bio.PDB

Expand Down

0 comments on commit 734feae

Please sign in to comment.