File: setup.py

package info (click to toggle)
cysignals 1.3.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 504 kB
  • sloc: ansic: 485; python: 442; makefile: 300; sh: 41
file content (16 lines) | stat: -rwxr-xr-x 408 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

from distutils.core import setup
from Cython.Build import cythonize
import sys

# Run Cython, search for .pxi files in all sys.path directories
extensions=cythonize("cysignals_example.pyx", include_path=sys.path)

# Run Distutils
setup(
    name="cysignals_example",
    version='1.0',
    ext_modules=extensions,
    license='GNU Lesser General Public License, version 3 or later',
)