diff options
author | Corbin Simpson <MostAwesomeDude@gmail.com> | 2010-08-23 22:33:54 -0700 |
---|---|---|
committer | Corbin Simpson <MostAwesomeDude@gmail.com> | 2010-08-23 22:33:54 -0700 |
commit | 01c48f649454b7f86bb01c15606754c17b007018 (patch) | |
tree | 07a21686fe2cc42a0dc67c3250dfa9ff42492c78 | |
parent | feb9057c2e44d4aff0a398ac4929dfd09d82a42f (diff) |
-rwxr-xr-x | setup.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..a829adf --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python + +from distutils.core import setup +from distutils.extension import Extension +from Cython.Distutils import build_ext + +ext_modules = [ + Extension("pylladium", ["pylladium.pyx"]), +] + +setup( + name = 'Pylladium', + cmdclass = {'build_ext': build_ext}, + ext_modules = ext_modules, +) + |