blob: 150e051d9eb45bdc3a0e9a907e6233091ad457ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Leo <thinkabit.ukim@gmail.com>
pkgname=py3-twine
_pkgname=twine
pkgver=2.0.0
pkgrel=1
pkgdesc="Collection of utilities for publishing packages on PyPI"
options="!check" # Requires unpackaged 'pretend'
url="https://twine.readthedocs.io/en/latest/"
arch="noarch"
license="Apache-2.0"
depends="
python3
py3-pkginfo
py3-readme_renderer
py3-requests
py3-requests-toolbelt
py3-setuptools
py3-tqdm
"
checkdepends="py3-pytest"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
build() {
python3 setup.py build
}
check() {
PYTHONPATH="$PWD/build/lib" py.test-3
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="c7db20800191accf3324b959a9ddeef3c35141cde77de9788b239fe764006dd20b8236c2cbd23192af2ac592567e6c917896e1402dfa96b964699aefb636968d twine-2.0.0.tar.gz"
|