Skip to content

Commit

Permalink
Compliance with new bob.buildout build scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
anjos committed Sep 12, 2014
1 parent 7561915 commit 31b3300
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
7 changes: 7 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
setuptools
bob.extension
bob.blitz
bob.core
bob.math
bob.io.base
matplotlib
15 changes: 6 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -29,14 +32,8 @@
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",
Expand Down

0 comments on commit 31b3300

Please sign in to comment.