Skip to content

Commit

Permalink
Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Zander authored and Manuel Zander committed May 28, 2018
1 parent aa18682 commit b102c67
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 68 deletions.
60 changes: 7 additions & 53 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,53 +1,7 @@
altgraph==0.10.2
bdist-mpkg==0.5.0
bonjour-py==0.3
macholib==1.5.1
matplotlib==1.3.1
modulegraph==0.10.4
numpy==1.8.0rc1
py2app==0.7.3
pyobjc-core==2.5.1
pyobjc-framework-Accounts==2.5.1
pyobjc-framework-AddressBook==2.5.1
pyobjc-framework-AppleScriptKit==2.5.1
pyobjc-framework-AppleScriptObjC==2.5.1
pyobjc-framework-Automator==2.5.1
pyobjc-framework-CFNetwork==2.5.1
pyobjc-framework-Cocoa==2.5.1
pyobjc-framework-Collaboration==2.5.1
pyobjc-framework-CoreData==2.5.1
pyobjc-framework-CoreLocation==2.5.1
pyobjc-framework-CoreText==2.5.1
pyobjc-framework-DictionaryServices==2.5.1
pyobjc-framework-EventKit==2.5.1
pyobjc-framework-ExceptionHandling==2.5.1
pyobjc-framework-FSEvents==2.5.1
pyobjc-framework-InputMethodKit==2.5.1
pyobjc-framework-InstallerPlugins==2.5.1
pyobjc-framework-InstantMessage==2.5.1
pyobjc-framework-LatentSemanticMapping==2.5.1
pyobjc-framework-LaunchServices==2.5.1
pyobjc-framework-Message==2.5.1
pyobjc-framework-OpenDirectory==2.5.1
pyobjc-framework-PreferencePanes==2.5.1
pyobjc-framework-PubSub==2.5.1
pyobjc-framework-QTKit==2.5.1
pyobjc-framework-Quartz==2.5.1
pyobjc-framework-ScreenSaver==2.5.1
pyobjc-framework-ScriptingBridge==2.5.1
pyobjc-framework-SearchKit==2.5.1
pyobjc-framework-ServiceManagement==2.5.1
pyobjc-framework-Social==2.5.1
pyobjc-framework-SyncServices==2.5.1
pyobjc-framework-SystemConfiguration==2.5.1
pyobjc-framework-WebKit==2.5.1
pyOpenSSL==0.13.1
pyparsing==2.0.1
python-dateutil==1.5
pytz==2013.7
scipy==0.13.0b1
six==1.4.1
vboxapi==1.0
virtualenv==15.1.0
xattr==0.6.4
zope.interface==4.1.1
flake8==2.6.2
hacking==1.1.0
mccabe==0.5.3
pbr==4.0.3
pycodestyle==2.0.0
pyflakes==1.2.3
six==1.11.0
13 changes: 1 addition & 12 deletions simulation/core.py
Original file line number Diff line number Diff line change
@@ -1,12 +1 @@
# -*- coding: utf-8 -*-
from . import helpers

def get_hmm():
"""Get a thought."""
return 'hmmm...'


def hmm():
"""Contemplation..."""
if helpers.get_answer():
print(get_hmm())
import helpers
4 changes: 1 addition & 3 deletions simulation/helpers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
def get_answer():
"""Get an answer."""
return True

0 comments on commit b102c67

Please sign in to comment.