link 3a error lnk2001 3a unresolved external symbol pyinit init

Solutions on MaxInterview for link 3a error lnk2001 3a unresolved external symbol pyinit init by the best coders in the world

showing results for - "link 3a error lnk2001 3a unresolved external symbol pyinit init "
Johanna
06 Feb 2016
1#!/usr/bin/env python
2from setuptools import setup, Extension
3
4from Cython.Build import cythonize
5
6ext_modules = cythonize([
7    Extension("amortization.amount", ["amortization/amount.py"]),
8    Extension("amortization.schedule", ["amortization/schedule.py"]),
9    Extension("amortization.amortize", ["amortization/amortize.py"]),
10])
11
12setup(
13    ext_modules=ext_modules
14)
151234567891011121314