mirror of
https://github.com/speice-io/release-the-gil
synced 2025-07-12 03:04:49 -04:00
Fibonacci and double-unlock examples
This commit is contained in:
19
setup.py
Normal file
19
setup.py
Normal file
@ -0,0 +1,19 @@
|
||||
from setuptools import setup, find_packages
|
||||
from Cython.Build import cythonize
|
||||
|
||||
|
||||
setup(
|
||||
name="release-the-gil",
|
||||
version="0.1",
|
||||
author="Bradlee Speice",
|
||||
author_email="bradlee@speice.io",
|
||||
description="Basic examples of parallelism in Python",
|
||||
url="https://github.com/speice-io/release-the-gil",
|
||||
packages=find_packages(),
|
||||
ext_modules=cythonize("src/*.pyx"),
|
||||
install_requires=[
|
||||
"Cython",
|
||||
"numba",
|
||||
"texttable"
|
||||
],
|
||||
)
|
Reference in New Issue
Block a user