Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.learn.linear
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
Show more breadcrumbs
bob
bob.learn.linear
Commits
e9a9f435
Commit
e9a9f435
authored
3 years ago
by
Tiago de Freitas Pereira
Browse files
Options
Downloads
Patches
Plain Diff
[conda] Fixes
parent
9cab01a4
No related branches found
No related tags found
1 merge request
!15
Fading some algorithms from bob.learn.linear
Pipeline
#58235
failed
3 years ago
Stage: build
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
MANIFEST.in
+1
-3
1 addition, 3 deletions
MANIFEST.in
bob/learn/__init__.py
+1
-0
1 addition, 0 deletions
bob/learn/__init__.py
conda/meta.yaml
+1
-1
1 addition, 1 deletion
conda/meta.yaml
setup.py
+11
-4
11 additions, 4 deletions
setup.py
with
14 additions
and
8 deletions
MANIFEST.in
+
1
−
3
View file @
e9a9f435
include LICENSE README.rst buildout.cfg develop.cfg requirements.txt version.txt
recursive-include doc conf.py *.rst
recursive-include bob/learn/linear *.cpp *.h
recursive-include bob/learn/linear/data *.*
recursive-include doc *.py *.rst
This diff is collapsed.
Click to expand it.
bob/learn/__init__.py
+
1
−
0
View file @
e9a9f435
# see https://docs.python.org/3/library/pkgutil.html
from
pkgutil
import
extend_path
__path__
=
extend_path
(
__path__
,
__name__
)
This diff is collapsed.
Click to expand it.
conda/meta.yaml
+
1
−
1
View file @
e9a9f435
...
...
@@ -41,7 +41,7 @@ test:
imports
:
-
{{
name
}}
commands
:
-
pytest --verbose --cov {{ name }} --cov-report term-missing --cov-report html:{{ project_dir }}/sphinx/coverage --cov-report xml:{{ project_dir }}
-
pytest
--capture=no
--verbose --cov {{ name }}
--cov-config {{ project_dir }}/pyproject.toml
--cov-report term-missing --cov-report html:{{ project_dir }}/sphinx/coverage --cov-report xml:{{ project_dir }}
/coverage.xml --pyargs {{ name }}
-
sphinx-build -aEW {{ project_dir }}/doc {{ project_dir }}/sphinx
-
sphinx-build -aEb doctest {{ project_dir }}/doc sphinx
-
conda inspect linkages -p $PREFIX {{ name }}
# [not win]
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
11
−
4
View file @
e9a9f435
...
...
@@ -8,7 +8,7 @@ from setuptools import setup, find_packages, dist
from
bob.extension.utils
import
load_requirements
build
_requires
=
load_requirements
()
install
_requires
=
load_requirements
()
# Define package version
version
=
open
(
"
version.txt
"
).
read
().
rstrip
()
...
...
@@ -25,9 +25,15 @@ setup(
long_description
=
open
(
"
README.rst
"
).
read
(),
include_package_data
=
True
,
zip_safe
=
False
,
setup_requires
=
build_requires
,
install_requires
=
build_requires
,
ext_modules
=
[],
setup_requires
=
install_requires
,
# This line is required for any distutils based packaging.
packages
=
find_packages
(),
# 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
,
entry_points
=
{
"
console_scripts
"
:
[],},
classifiers
=
[
"
Framework :: Bob
"
,
...
...
@@ -40,3 +46,4 @@ setup(
"
Topic :: Software Development :: Libraries :: Python Modules
"
,
],
)
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