Skip to content
Snippets Groups Projects
Commit 26965944 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix build

parent 35e31f2b
No related branches found
No related tags found
No related merge requests found
from setuptools import setup, find_packages
from setuptools import setup
from snakehouse import Multibuild, build
from setuptools import Extension
......@@ -9,7 +9,7 @@ cython_multibuilds = [
Multibuild('example_module', ['example_module/test.pyx', 'example_module/test2.pyx',
'example_module/test3/test3.pyx',
'example_module/test_n.c']),
Extension('example', ['example2/example.pyx'])
Extension('example2.example', ['example2/example.pyx'])
]
# first argument is used directly by snakehouse, the rest and **kwargs are passed to
......
from example_module.test import times_two
from example_module.test2 import times_three, times_five
from example_module.test3.test3 import times_four
from example.example2 import test
from example2.example import test
import unittest
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment