mirror of
https://github.com/wassname/ray.git
synced 2026-06-29 03:04:28 +08:00
Python API for constructing tasks (#28)
* Python API for constructing tasks * Fixes.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
from setuptools import setup, find_packages, Extension
|
||||
|
||||
common_module = Extension("common",
|
||||
sources=["object_id.c", "serialization.c", "task.c"],
|
||||
include_dirs=["../../", "../../thirdparty"],
|
||||
extra_objects=["../../build/libcommon.a"],
|
||||
extra_compile_args=["--std=c99", "-Werror"])
|
||||
|
||||
setup(name="Common",
|
||||
version="0.1",
|
||||
description="Common library for Ray",
|
||||
ext_modules=[common_module])
|
||||
Reference in New Issue
Block a user