2015-01-21 09:17:39 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2014-09-17 22:51:47 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=5
|
2016-11-02 01:52:32 +03:00
|
|
|
PYTHON_COMPAT=( python{2_7,3_4} pypy )
|
2014-09-17 22:51:47 +04:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="Simple test suite enabling Django app testing via setup.py"
|
|
|
|
HOMEPAGE="https://github.com/praekelt/django-setuptest"
|
|
|
|
SRC_URI="https://github.com/praekelt/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
|
|
|
|
2015-03-09 22:48:48 +03:00
|
|
|
KEYWORDS="amd64 x86"
|
2014-09-17 22:51:47 +04:00
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
RDEPEND="dev-python/pep8[${PYTHON_USEDEP}]
|
|
|
|
dev-python/coverage[${PYTHON_USEDEP}]
|
|
|
|
dev-python/django[${PYTHON_USEDEP}]
|
|
|
|
dev-python/six[${PYTHON_USEDEP}]"
|
2015-01-21 09:17:39 +03:00
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|