From ccbf379ad38d59bbcbb3ea0e166303b2b80f08e1 Mon Sep 17 00:00:00 2001 From: "Michael D. M. Dryden" Date: Tue, 5 Apr 2016 17:51:28 -0400 Subject: [PATCH] Remove unused source files. --- dstat_interface/build_windows.py | 30 ------------------------------ dstat_interface/setup.py | 25 ------------------------- 2 files changed, 55 deletions(-) delete mode 100644 dstat_interface/build_windows.py delete mode 100644 dstat_interface/setup.py diff --git a/dstat_interface/build_windows.py b/dstat_interface/build_windows.py deleted file mode 100644 index d8e31ca..0000000 --- a/dstat_interface/build_windows.py +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env python -# DStat Interface - An interface for the open hardware DStat potentiostat -# Copyright (C) 2014 Michael D. M. Dryden - -# Wheeler Microfluidics Laboratory -# -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -__requires__ = 'PyInstaller==2.1' - - -import os, sys -os.chdir(os.path.dirname(sys.argv[0])) - -args = ['dstat.spec'] -args.extend(sys.argv[1:]) - -import PyInstaller.main as pyi #For some reason, it gets the path here, so working dir must be set first -pyi.run(args) diff --git a/dstat_interface/setup.py b/dstat_interface/setup.py deleted file mode 100644 index bbecb41..0000000 --- a/dstat_interface/setup.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python -# DStat Interface - An interface for the open hardware DStat potentiostat -# Copyright (C) 2014 Michael D. M. Dryden - -# Wheeler Microfluidics Laboratory -# -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -from distutils.core import setup -from Cython.Build import cythonize - -setup( - ext_modules = cythonize("*.pyx") - ) \ No newline at end of file -- GitLab