Skip to content
Snippets Groups Projects
Commit 243e3112 authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

requirements

parent a7a76b2f
No related merge requests found
Requirements:
python >= 2.7.8
cython >= 0.20.1
matplotlib >= 1.3.1
numpy >= 1.8.2
pyserial >= 2.7
pyzmq >= 14.3.1
gtk+ >= 2.24.24
pygobject >= 2.28.6
pygtk >= 2.24.0
For packaging:
pyinstaller
\ No newline at end of file
File moved
File moved
# -*- mode: python -*-
a = Analysis(['./main.py'],
pathex=['/Users/mdryden/src/dstat-interface2/dstatInterface'],
hiddenimports=[],
hiddenimports=['zmq.utils.strtypes', 'zmq.utils.jsonapi','zmq.core.pysocket','cython'],
hookspath=None,
runtime_hooks=None)
pyz = PYZ(a.pure)
......
#!/usr/bin/env python
# DStat Interface - An interface for the open hardware DStat potentiostat
# Copyright (C) 2014 Michael D. M. Dryden -
# Wheeler Microfluidics Laboratory <http://microfluidics.utoronto.ca>
#
#
# 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 <http://www.gnu.org/licenses/>.
"""
This is a setup.py script generated by py2applet
from distutils.core import setup
from Cython.Build import cythonize
Usage:
python setup.py py2app
"""
from setuptools import setup
APP = ['main.py']
DATA_FILES = ['interface']
OPTIONS = {'argv_emulation': True}
setup(
ext_modules = cythonize("*.pyx")
)
\ No newline at end of file
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment