Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.example.cmake
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
bob
bob.example.cmake
Commits
ea869c59
Commit
ea869c59
authored
9 years ago
by
Tiago de Freitas Pereira
Browse files
Options
Downloads
Patches
Plain Diff
Integrating with gitlab
parent
efb0217d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
requirements.txt
+7
-0
7 additions, 0 deletions
requirements.txt
setup.py
+86
-0
86 additions, 0 deletions
setup.py
version.txt
+1
-0
1 addition, 0 deletions
version.txt
with
94 additions
and
0 deletions
requirements.txt
0 → 100644
+
7
−
0
View file @
ea869c59
setuptools
bob.extension
bob.io.base
bob.io.image
bob.core
bob.blitz
This diff is collapsed.
Click to expand it.
setup.py
0 → 100644
+
86
−
0
View file @
ea869c59
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Manuel Guenther <Manuel.Guenther@idiap.ch>
# Tue Apr 24 18:55:40 CEST 2012
# This file contains the python (distutils/setuptools) instructions so your
# package can be installed on **any** host system. It defines some basic
# information like the package name for instance, or its homepage.
#
# It also defines which other packages this python package depends on and that
# are required for this package's operation. The python subsystem will make
# sure all dependent packages are installed or will install them for you upon
# the installation of this package.
#
# The 'buildout' system we use here will go further and wrap this package in
# such a way to create an isolated python working environment. Buildout will
# make sure that dependencies which are not yet installed do get installed, but
# **without** requiring administrative privileges on the host system. This
# allows you to test your package with new python dependencies w/o requiring
# administrative interventions.
from
setuptools
import
setup
,
find_packages
,
dist
dist
.
Distribution
(
dict
(
setup_requires
=
[
'
bob.extension
'
]))
from
bob.extension.utils
import
load_requirements
install_requires
=
load_requirements
()
# Define package version
version
=
open
(
"
version.txt
"
).
read
().
rstrip
()
# The only thing we do in this file is to call the setup() function with all
# parameters that define our package.
setup
(
# This is the basic information about your project. Modify all this
# information before releasing code publicly.
name
=
'
bob.example.cmake
'
,
version
=
version
,
description
=
'
Example project using Bob C++ interface
'
,
url
=
'
https://github.com/bioidiap/bob.example.cmake
'
,
license
=
'
GPLv3
'
,
author
=
'
Manuel Guenther
'
,
author_email
=
'
manuel.guenther@idiap.ch
'
,
long_description
=
open
(
'
README.rst
'
).
read
(),
# This line is required for any distutils based packaging.
packages
=
find_packages
(),
include_package_data
=
True
,
zip_safe
=
True
,
# This line defines which packages should be installed when you "install"
# this package. All packages that are mentioned here, but are not installed
# on the current system will be installed locally and only visible to the
# scripts of this package. Don't worry - You won't need administrative
# privileges when using buildout.
install_requires
=
install_requires
,
# This package is good examples of namespace implementations
# using several layers. You can check them out here:
# https://github.com/idiap/bob/wiki/Satellite-Packages
# This entry defines which scripts you will have inside the 'bin' directory
# once you install the package (or run 'bin/buildout'). The order of each
# entry under 'console_scripts' is like this:
# script-name-at-bin-directory = module.at.your.library:function
entry_points
=
{
'
console_scripts
'
:
[],
},
classifiers
=
[
'
Framework :: Bob
'
,
'
Development Status :: 4 - Beta
'
,
'
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
'
,
'
Intended Audience :: Education
'
,
'
Intended Audience :: Science/Research
'
,
'
Natural Language :: English
'
,
'
Programming Language :: Python
'
,
'
Programming Language :: Python :: 3
'
,
],
)
This diff is collapsed.
Click to expand it.
version.txt
0 → 100644
+
1
−
0
View file @
ea869c59
0.0.9b0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment