blob: 7ba883677913d195a8c9b0dfc4608eada4fcd712 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit eutils distutils-r1 git-r3
DESCRIPTION="Python library to read PDB, GRO or Gromacs XTC files"
HOMEPAGE="https://github.com/dseeliger/pmx"
EGIT_REPO_URI="https://github.com/dseeliger/${PN}.git"
LICENSE="LGPL-3"
SLOT="0"
IUSE=""
DEPEND="
sci-chemistry/gromacs
sci-libs/scipy[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
"
RDEPEND="${DEPEND}"
|