Skip to content

Commit

Permalink
[refactor] changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChocoParrot committed Sep 13, 2021
1 parent adf1827 commit f56db51
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@
"Operating System :: OS Independent",
),
install_requires=[
"biopython=1.79"
]
"biopython==1.79"
],
scripts=[
"src/cline_tools/orffinder-to-gtf",
"src/cline_tools/orffinder-to-sequence"
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import sys
import os
from Bio import SeqIO
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import sys
import os
from Bio import SeqIO
Expand Down

0 comments on commit f56db51

Please sign in to comment.