Skip to content
Snippets Groups Projects

add treem

Open Alexander Kozlov requested to merge kozlov/ebrains-spack-builds:add-treem into master
1 unresolved thread
Compare and
2 files
+ 27
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 26
0
# (from https://github.com/BlueBrain/spack)
# Copyright 2013-2024 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)
from spack.package import *
class PyTreem(PythonPackage):
"""Module treem provides data structure and command-line tools
for accessing and manipulating the digital reconstructions
of the neuron morphology in Stockley-Wheal-Cannon format (SWC).
Developed by Alexander Kozlov (akozlov@kth.se),
KTH Royal Institute of Technology, Stockholm, Sweden."""
homepage = "https://github.com/a1eko/treem"
pypi = "treem/treem-1.1.0.tar.gz"
maintainers = ['a1eko'] # github usernames
Please register or sign in to reply
version("1.1.0", sha256="eec63afd2ce675a6ad974a9b93f800918596bfda")
depends_on("py-numpy", type="run")
depends_on("py-matplotlib", type="run")