소스 검색

Binder test 2

Randy Paredis 5 년 전
부모
커밋
9c1b55fcf1
3개의 변경된 파일15개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 1
      binder/postBuild
  2. 1 1
      binder/start
  3. 11 0
      setup.py

+ 3 - 1
binder/postBuild

@@ -1,5 +1,7 @@
-#!bin/bash
+#!bin/sh
 
 set -e
 
 echo "Hello World?"
+
+python -m pip install numpy scipy pytest pandas pydub simpleaudio matplotlib

+ 1 - 1
binder/start

@@ -1,4 +1,4 @@
-#!bin/bash
+#!bin/sh
 
 set -e
 

+ 11 - 0
setup.py

@@ -0,0 +1,11 @@
+from distutils.core import setup
+
+setup(name="PyPDEVSBBL",
+      version="0.1",
+      description="DEVS Building Block Library (for PythonPDEVS)",
+      author="Randy Paredis",
+      author_email="randy.paredis@student.uantwerpen.be",
+      url="http://msdl.cs.mcgill.ca/people/rparedis",
+      packages=['pypdevsbbl', 'pypdevsbbl.generic', 'pypdevsbbl.generic.transformers', 'pypdevsbbl.extra', 'pypdevsbbl.extra.rngstreams'],
+      requires=['numpy', 'scipy', 'pytest', 'pandas', 'pydub', 'simpleaudio', 'matplotlib']
+      )