File: setup.py

package info (click to toggle)
pyscanfcs 0.3.6%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,412 kB
  • sloc: python: 2,676; makefile: 55; sh: 11
file content (17 lines) | stat: -rwxr-xr-x 465 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This file is used to compile libraries from cython code.
# Run "python setup.py build_ext --inplace" to create those
# libraries.
# For more information visit cython.org.

from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext

ext_modules = [Extension("binningc", ["binningc.pyx"]),
               ]

setup(
    name='Binning Stuff',
    cmdclass={'build_ext': build_ext},
    ext_modules=ext_modules
)