Skip to content

Commit 3a06e42

Browse files
committed
Better PEP8 conformance.
1 parent 716139a commit 3a06e42

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
from setuptools import setup
1010

1111
if platform.system() == "Linux":
12-
bin_dir = "bins/linux"
12+
BIN_DIR = "bins/linux"
1313
elif platform.system() == "Darwin":
14-
bin_dir = "bins/osx"
14+
BIN_DIR = "bins/osx"
1515

16-
structure_bin = bin_dir + "/structure"
17-
faststructure_bin = bin_dir + "/fastStructure"
16+
STRUCTURE_BIN = BIN_DIR + "/structure"
17+
FASTSTRUCTURE_BIN = BIN_DIR + "/fastStructure"
1818

1919
setup(
2020
name="structure_threader",
@@ -39,7 +39,7 @@
3939
"Natural Language :: English",
4040
"Operating System:: POSIX:: Linux",
4141
"Topic :: Scientific/Engineering :: Bio-Informatics"],
42-
data_files=[('bin', [faststructure_bin, structure_bin])],
42+
data_files=[('bin', [FASTSTRUCTURE_BIN, STRUCTURE_BIN])],
4343
entry_points={
4444
"console_scripts": [
4545
"structure_threader = structure_threader.structure_threader:main",

0 commit comments

Comments
 (0)