我正在使用Cython爲我有的幾個python模塊生成編譯.so文件。作爲outlined in the Cython documentation,你可以按如下方式創建一個setup.py文件: from distutils.core import setup
from Cython.Build import cythonize
setup(
ext_modules = cython
我有一個很多* .py文件(腳本)和* .py文件的子目錄。 如何將所有* .py文件從根目錄添加到包中?現在 我setup.py是 from setuptools import setup, find_packages
setup(
name='my-awesome-helloworld-script', # This is the name of your PyPI-package