mirror of
https://github.com/wassname/ray.git
synced 2026-06-30 18:33:37 +08:00
194bdb1d96
* Put infrastructure in place to compute task IDs and object IDs. * Fix version number for common library. * Compute task IDs and object IDs deterministically. * Address Stephanie's comments. * Update task documentation. * Fix formatting. * Add more tests and checks. * Fix formatting. * Enable DCHECKs and change CHECKs to DCHECKs.
13 lines
503 B
Python
13 lines
503 B
Python
from setuptools import setup, find_packages, Extension
|
|
|
|
common_module = Extension("common",
|
|
sources=["common_module.c", "common_extension.c"],
|
|
include_dirs=["../../", "../../thirdparty"],
|
|
extra_objects=["../../build/libcommon.a"],
|
|
extra_compile_args=["--std=c99", "-Werror"])
|
|
|
|
setup(name="Common",
|
|
version="0.01",
|
|
description="Common library for Ray",
|
|
ext_modules=[common_module])
|