Permalink
| @@ -0,0 +1,46 @@ | ||
| # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 | ||
|
|
||
| PortSystem 1.0 | ||
| PortGroup python 1.0 | ||
| version 0.1.4 | ||
|
|
||
| homepage https://github.com/srnas/barnaba | ||
|
|
||
| master_sites pypi:b/barnaba | ||
| distname barnaba-${version} | ||
|
|
||
| name py-barnaba | ||
| platforms darwin | ||
| categories-append science | ||
| license GPL-3 | ||
| maintainers {gmail.com:giovanni.bussi @GiovanniBussi} openmaintainer | ||
|
|
||
| description BaRNAba is a tool for analyzing RNA three-dimensional structures and simulations. | ||
| long_description ${description} \ | ||
| BaRNAba uses MDtraj to read/write topology and trajectory files, as such it \ | ||
| supports several formats including pdb, xtc, trr, dcd, binpos, netcdf, mdcrd, \ | ||
| prmtop, and more. See ${homepage} for more information. | ||
|
|
||
| supported_archs noarch | ||
|
|
||
| checksums rmd160 052f054bae9c4fd8cdb4297b0ab9487425838c8e \ | ||
| sha256 09846b1a18e61343181e75fc8bedb091e016873829e297281c7beb08fbb62d60 | ||
|
|
||
| python.versions 27 34 35 36 | ||
|
|
||
| if {${name} ne ${subport}} { | ||
|
|
||
| depends_build-append port:py${python.version}-setuptools_scm | ||
|
|
||
| depends_lib-append port:py${python.version}-mdtraj \ | ||
| port:py${python.version}-scipy \ | ||
| port:py${python.version}-numpy \ | ||
| port:py${python.version}-pandas \ | ||
| port:py${python.version}-scikit-learn \ | ||
| port:py${python.version}-future | ||
|
|
||
| depends_test-append port:py${python.version}-nose | ||
| test.run yes | ||
| } | ||
|
|
||
|
|