Skip to content
Snippets Groups Projects
Commit 6943e06e authored by Laurent EL SHAFEY's avatar Laurent EL SHAFEY
Browse files

Fix setup.py and remove old find-links

parent 1cb6d92d
No related branches found
No related tags found
No related merge requests found
...@@ -6,18 +6,9 @@ ...@@ -6,18 +6,9 @@
[buildout] [buildout]
parts = scripts parts = scripts
newest = false
develop = . develop = .
; required packages: sphinx (to generate the documentation), bob, and our package.
eggs = bob.example.faceverify eggs = bob.example.faceverify
newest = false
; This points to the bob databases that are installed locally at Idiap
; TODO: remove this as soon as the databases are published at pypi
find-links = http://www.idiap.ch/software/bob/packages/xbob/nightlies/last
[bob.example.faceverify]
recipe = xbob.buildout:develop
[scripts] [scripts]
recipe = xbob.buildout:scripts recipe = xbob.buildout:scripts
...@@ -39,6 +39,8 @@ setup( ...@@ -39,6 +39,8 @@ setup(
# This line is required for any distutils based packaging. # This line is required for any distutils based packaging.
packages=find_packages(), packages=find_packages(),
include_package_data=True,
zip_safe=True,
# This line defines which packages should be installed when you "install" # This line defines which packages should be installed when you "install"
# this package. All packages that are mentioned here, but are not installed # this package. All packages that are mentioned here, but are not installed
...@@ -46,9 +48,8 @@ setup( ...@@ -46,9 +48,8 @@ setup(
# scripts of this package. Don't worry - You won't need administrative # scripts of this package. Don't worry - You won't need administrative
# privileges when using buildout. # privileges when using buildout.
# TODO: Add a version number requirement to bob, when ready
install_requires=[ install_requires=[
"sphinx", # to generate the documentation "setuptools",
"bob >= 1.1.0", # base signal proc./machine learning library "bob >= 1.1.0", # base signal proc./machine learning library
"xbob.db.atnt", # the AT&T (ORL) database of images "xbob.db.atnt", # the AT&T (ORL) database of images
], ],
......
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