Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mednet
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
medai
software
mednet
Commits
01848ea0
Commit
01848ea0
authored
1 year ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
Implement support for pixi dev installs
parent
f84c0edf
No related branches found
No related tags found
1 merge request
!30
Use pixi
Pipeline
#85640
canceled
1 year ago
Stage: qa
Stage: test
Stage: doc
Stage: dist
Stage: deploy
Changes
5
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitignore
+0
-4
0 additions, 4 deletions
.gitignore
.reuse/dep5
+1
-0
1 addition, 0 deletions
.reuse/dep5
conda/meta.yaml
+1
-1
1 addition, 1 deletion
conda/meta.yaml
pixi.lock
+11022
-0
11022 additions, 0 deletions
pixi.lock
pyproject.toml
+71
-23
71 additions, 23 deletions
pyproject.toml
with
11095 additions
and
28 deletions
.gitignore
+
0
−
4
View file @
01848ea0
...
...
@@ -13,8 +13,6 @@
coverage.xml
test_results.xml
junit-coverage.xml
environment.yaml
environment.yml
html/
build/
doc/api/
...
...
@@ -28,5 +26,3 @@ results*/
*_version.py
.venv
.pixi
pixi.toml
pixi.lock
This diff is collapsed.
Click to expand it.
.reuse/dep5
+
1
−
0
View file @
01848ea0
...
...
@@ -4,6 +4,7 @@ Upstream-Contact: Andre Anjos <andre.anjos@idiap.ch>
Source: https://gitlab.idiap.ch/biosignal/software/mednet
Files:
pixi.lock
.gitmodules
doc/_static/style.css
doc/_templates/*
...
...
This diff is collapsed.
Click to expand it.
conda/meta.yaml
+
1
−
1
View file @
01848ea0
...
...
@@ -78,5 +78,5 @@ test:
about
:
home
:
{{
data
[
'
project'
][
'
urls'
][
'
homepage'
]
}}
summary
:
{{
data
[
'
project'
][
'
description'
]
}}
license
:
{{
data
[
'
project'
][
'
license'
]
[
'
text'
]
}}
license
:
{{
data
[
'
project'
][
'
license'
]
}}
license_family
:
GPL
This diff is collapsed.
Click to expand it.
pixi.lock
0 → 100644
+
11022
−
0
View file @
01848ea0
This diff is collapsed.
Click to expand it.
pyproject.toml
+
71
−
23
View file @
01848ea0
...
...
@@ -12,7 +12,7 @@ dynamic = ["version"]
requires-python
=
">
=
3.10
"
description
=
"Benchmarks for Computer-Aided Disease Detection from Medical Data."
readme
=
"README.md"
license
=
{
text
=
"GNU General Public License v3 (GPLv3)"
}
license
=
"GPL-3.0-or-later"
authors
=
[
{
name
=
"Geoffrey Raposo"
,
email
=
"geoffrey@raposo.ch"
}
]
maintainers
=
[
{
name
=
"Andre Anjos"
,
email
=
"andre.anjos@idiap.ch"
}
,
...
...
@@ -49,6 +49,76 @@ dependencies = [
"versioningit"
,
]
[project.urls]
documentation
=
"https://www.idiap.ch/software/biosignal/software/docs/biosignal/software/mednet/main/sphinx/"
homepage
=
"https://pypi.org/project/mednet"
repository
=
"https://gitlab.idiap.ch/biosignal/software/mednet"
changelog
=
"https://gitlab.idiap.ch/biosignal/software/mednet/-/releases"
[project.optional-dependencies]
qa
=
[
"pre-commit"
]
doc
=
[
"sphinx"
,
"furo"
,
"sphinx-autodoc-typehints"
,
"auto-intersphinx"
,
"sphinx-copybutton"
,
"sphinx-inline-tabs"
,
"sphinx-click"
,
]
test
=
[
"pytest"
,
"pytest-cov"
]
[project.scripts]
mednet
=
"mednet.scripts.cli:cli"
[tool.pixi.project]
name
=
"mednet"
channels
=
[
"conda-forge"
]
platforms
=
[
"linux-64"
,
"osx-arm64"
]
[tool.pixi.dependencies]
clapper
=
"*"
click
=
"*"
credible
=
"*"
numpy
=
"*"
scipy
=
"*"
scikit-image
=
"*"
scikit-learn
=
"*"
tqdm
=
"*"
psutil
=
"*"
tabulate
=
"*"
matplotlib
=
"*"
pillow
=
"*"
pytorch
=
">
=
1.8
"
torchvision
=
">
=
0.10
"
lightning
=
">
=
2.2
.
0
"
tensorboard
=
"*"
grad-cam
=
">
=
1.4
.
8
"
versioningit
=
"*"
[tool.pixi.host-dependencies]
pre-commit
=
"*"
ruff
=
"*"
reuse
=
"*"
sphinx
=
"*"
furo
=
"*"
sphinx-autodoc-typehints
=
"*"
auto-intersphinx
=
"*"
sphinx-copybutton
=
"*"
sphinx-inline-tabs
=
"*"
sphinx-click
=
"*"
pytest
=
"*"
pytest-cov
=
"*"
[tool.pixi.pypi-dependencies]
mednet
=
{
path
=
"."
,
editable
=
true
,
extras
=
[
"qa"
,
"doc"
,
"test"
]
}
[tool.pixi.tasks]
qa-install
=
"pre-commit install"
qa
=
"pre-commit run --all-files"
doc
=
"rm -rf doc/api && rm -rf html && sphinx-build -aEW doc html"
test
=
"pytest -sv tests/"
[tool.hatch.version]
source
=
"versioningit"
...
...
@@ -85,28 +155,6 @@ include = [
[tool.hatch.build.targets.wheel]
packages
=
[
"src/mednet"
]
[project.urls]
documentation
=
"https://www.idiap.ch/software/biosignal/software/docs/biosignal/software/mednet/main/sphinx/"
homepage
=
"https://pypi.org/project/mednet"
repository
=
"https://gitlab.idiap.ch/biosignal/software/mednet"
changelog
=
"https://gitlab.idiap.ch/biosignal/software/mednet/-/releases"
[project.optional-dependencies]
qa
=
[
"pre-commit"
]
doc
=
[
"sphinx"
,
"furo"
,
"sphinx-autodoc-typehints"
,
"auto-intersphinx"
,
"sphinx-copybutton"
,
"sphinx-inline-tabs"
,
"sphinx-click"
,
]
test
=
[
"pytest"
,
"pytest-cov"
,
"coverage"
]
[project.scripts]
mednet
=
"mednet.scripts.cli:cli"
[project.entry-points."mednet.config"]
# models
...
...
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