Skip to content
Snippets Groups Projects
Commit 31b33006 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Compliance with new bob.buildout build scheme

parent 7561915c
No related branches found
No related tags found
No related merge requests found
......@@ -6,9 +6,12 @@
bob_packages = ['bob.core', 'bob.math']
from setuptools import setup, find_packages, dist
dist.Distribution(dict(setup_requires=['bob.blitz'] + bob_packages))
dist.Distribution(dict(setup_requires=['bob.extension', 'bob.blitz'] + bob_packages))
from bob.blitz.extension import Extension, build_ext
from bob.extension.utils import load_requirements
build_requires = load_requirements()
packages = ['blitz >= 0.10', 'boost']
version = '2.0.0a0'
......@@ -29,14 +32,8 @@ setup(
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'bob.blitz',
'bob.core',
'bob.math',
'bob.io.base',
'matplotlib',
],
setup_requires = build_requires,
install_requires = build_requires,
namespace_packages=[
"bob",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment