-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 887 Bytes
/
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
27
28
29
import sys
import setuptools
from distutils.core import setup, Extension
ext_modules = [
Extension("slime",
language="c++",
sources=['src/SLIME.cc', 'src/SimpSolver.cc', 'src/Solver.cc'],
include_dirs=['.', 'include'],
extra_compile_args=['-std=c++11'],
),
Extension("pixie",
language="c++",
sources=['src/pixie.cc'],
include_dirs=['.', 'include'],
extra_compile_args=['-std=c++11'],
),
]
setup(
name='PEQNP',
version='6.1.0',
packages=['peqnp'],
url='http://www.peqnp.com',
license='copyright (c) 2012-2021 Oscar Riveros. All rights reserved.',
author='Oscar Riveros',
author_email='[email protected]',
description='PEQNP Mathematical Solver from http://www.peqnp.com',
ext_modules=ext_modules,
)