Created
August 28, 2016 12:11
-
-
Save tistaharahap/444ef19e78d75ac2a2c4c3a22d7ac4f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from setuptools import setup, Extension | |
setup(ext_modules=[Extension("cpuload", ["cpuload.c"])], | |
name='cpuload', | |
version='0.0.1', | |
description='A simple Cython demo', | |
long_description='A simple Cython demo', | |
keywords='cython demo', | |
author='Batista Harahap', | |
author_email='[email protected]', | |
license='MIT', | |
packages=['cpuload'], | |
setup_requires=[], | |
zip_safe=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment