We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 699a963 commit 9f35552Copy full SHA for 9f35552
compile.py
@@ -0,0 +1,13 @@
1
+from distutils.core import setup
2
+from distutils.extension import Extension
3
+from Cython.Distutils import build_ext
4
+
5
+ext_modules = [
6
+ Extension("YourClient", ["src/YourClient.py"])
7
+]
8
9
+setup(
10
+ name='My Snake', # Inser Your Team Name
11
+ cmdclass={'build_ext': build_ext},
12
+ ext_modules=ext_modules
13
+)
compile.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+python3 compile.py build_ext --inplace
+a=`find ./ -name "*.so"`
+mv $a src/$a
0 commit comments