Skip to content

Instantly share code, notes, and snippets.

@tistaharahap
Created August 28, 2016 12:11
Show Gist options
  • Save tistaharahap/444ef19e78d75ac2a2c4c3a22d7ac4f5 to your computer and use it in GitHub Desktop.
Save tistaharahap/444ef19e78d75ac2a2c4c3a22d7ac4f5 to your computer and use it in GitHub Desktop.
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