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

Compliance with the new buildout requirements

parent 6cdb16ff
No related branches found
No related tags found
No related merge requests found
...@@ -9,9 +9,12 @@ ...@@ -9,9 +9,12 @@
bob_packages = ['bob.core', 'bob.io.base'] bob_packages = ['bob.core', 'bob.io.base']
from setuptools import setup, find_packages, dist 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.blitz.extension import Extension, build_ext
from bob.extension.utils import load_requirements
build_requires = load_requirements()
version = '2.0.0a0' version = '2.0.0a0'
packages = ['boost', 'opencv>=2.0'] packages = ['boost', 'opencv>=2.0']
...@@ -32,16 +35,8 @@ setup( ...@@ -32,16 +35,8 @@ setup(
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
install_requires=[ setup_requires = build_requires,
'setuptools', install_requires = build_requires,
'bob.blitz',
'bob.core',
'bob.io.base',
'bob.io.image', #for tests
'bob.ip.color', #for tests
'bob.ip.draw', #for doc generation
'matplotlib', #for doc generation
],
namespace_packages=[ namespace_packages=[
"bob", "bob",
......
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