Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
38
Issue boards
Milestones
Wiki
Code
Merge requests
25
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Commits
166bead2
Commit
166bead2
authored
2 years ago
by
EtienneCmb
Browse files
Options
Downloads
Patches
Plain Diff
Initial commit for adding Frites
parent
3a66a577
No related branches found
Branches containing commit
No related tags found
2 merge requests
!98
create new experimental release
,
!97
Add py-frites
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/py-frites/package.py
+61
-0
61 additions, 0 deletions
packages/py-frites/package.py
with
61 additions
and
0 deletions
packages/py-frites/package.py
0 → 100644
+
61
−
0
View file @
166bead2
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
# ----------------------------------------------------------------------------
# If you submit this package back to Spack as a pull request,
# please first remove this boilerplate and all FIXME comments.
#
# This is a template package file for Spack. We've put "FIXME"
# next to all the things you'll want to change. Once you've handled
# them, you can save this file and test your package like this:
#
# spack install py-frites
#
# You can edit this file again by typing:
#
# spack edit py-frites
#
# See the Spack documentation for more information on packaging.
# ----------------------------------------------------------------------------
from
spack
import
*
class
PyFrites
(
PythonPackage
):
"""
Frites is a Python toolbox for assessing information-based measures on
human and animal neurophysiological data (M/EEG, Intracranial).
"""
# FIXME: Add a proper url for your package's homepage here.
homepage
=
"
https://brainets.github.io/frites/
"
pypi
=
"
frites/frites-0.4.2.tar.gz
"
# FIXME: Add a list of GitHub accounts to
# notify when the package is updated.
# maintainers = ['github_user1', 'github_user2']
version
(
'
0.4.2
'
,
sha256
=
'
5da63f6f91515ff0dbed0252a75fcbdeade4311bfd28d08cd644c89c85e6ac5a
'
)
# FIXME: Only add the python/pip/wheel dependencies if you need specific versions
# or need to change the dependency type. Generic python/pip/wheel dependencies are
# added implicity by the PythonPackage base class.
depends_on
(
'
python@3.7:
'
,
type
=
(
'
build
'
,
'
run
'
))
# depends_on('py-pip@X.Y:', type='build')
# depends_on('py-wheel@X.Y:', type='build')
# FIXME: Add a build backend, usually defined in pyproject.toml. If no such file
# exists, use setuptools.
depends_on
(
'
py-setuptools
'
,
type
=
'
build
'
)
# depends_on('py-flit-core', type='build')
# depends_on('py-poetry-core', type='build')
# FIXME: Add additional dependencies if required.
depends_on
(
'
py-numpy
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-scipy
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-mne
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-joblib
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-xarray
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-netcdf4
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-h5netcdf
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-scikit-learn
'
,
type
=
(
'
build
'
,
'
run
'
))
This diff is collapsed.
Click to expand it.
Preview
0%
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