File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 99 from setuptools import setup
1010
1111if platform .system () == "Linux" :
12- bin_dir = "bins/linux"
12+ BIN_DIR = "bins/linux"
1313elif 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
1919setup (
2020 name = "structure_threader" ,
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" ,
You can’t perform that action at this time.
0 commit comments