-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
26 lines (24 loc) · 1.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
setup(name = 'Wisard Library',
version = '1.0',
author = 'Maurizio Giordano',
author_email = '[email protected]',
maintainer = 'Maurizio Giordano',
maintainer_email = '[email protected]',
description = 'Wisard Library',
long_description = """...
""",
platforms = ['Mac OSX', 'POSIX',],
classifiers = [
'...',
],
license = 'GNU Lesser General Public License v2 or later (LGPLv2+)',
packages=['wisard'],
ext_modules=[Extension("wisard_wrapper",
["wisard_wrapper.pyx",
"Discriminator.cpp", "Ram.cpp"],
language="c++",
extra_compile_args=["-std=c++11"])],
cmdclass = {'build_ext': build_ext})