-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (34 loc) · 1.05 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
27
28
29
30
31
32
33
34
35
36
37
38
from distutils.core import setup, Extension, Command
import unittest
import numpy as np
cio = Extension("pycppqed.cio", sources=["pycppqed/io.c"])
class test(Command):
"""
Run all available tests of pycppqed.
"""
user_options = []
initialize_options = lambda s:None
finalize_options = lambda s:None
def run(self):
from pycppqed import test_initialconditions, test_io, test_statevector
testsuits = {
"initialconditions": test_initialconditions.suite(),
"io": test_io.suite(),
"statevector": test_statevector.suite(),
}
suite = unittest.TestSuite(testsuits.values())
unittest.TextTestRunner(verbosity=2).run(suite)
setup(
name = "PyCppQED",
version = "0.1.2",
author = "Sebastian Kraemer",
author_email = "[email protected]",
url = "http://github.com/bastikr/pycppqed",
license = "BSD",
packages = ('pycppqed',),
ext_modules = [cio],
cmdclass = {
"test": test,
},
include_dirs = [np.get_include()]
)