1 | # -*- 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 |
---|
2 | # $Id: Portfile $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | PortGroup github 1.0 |
---|
7 | |
---|
8 | github.setup pypa twine 1.9.1 |
---|
9 | |
---|
10 | name py-twine |
---|
11 | license apache |
---|
12 | maintainers {@jjstickel gmail.com:jjstickel} openmaintainer |
---|
13 | description Twine is a utility for interacting with PyPI. |
---|
14 | long_description ${description} |
---|
15 | platforms darwin |
---|
16 | |
---|
17 | checksums rmd160 ee278694354444004b321b87fbb7701ac92e192a \ |
---|
18 | sha256 c382d996bc4bb5d1eaf7cac6cf3bb439680e28613a5de2ba6bf225dd0b51ca31 |
---|
19 | |
---|
20 | python.versions 27 36 |
---|
21 | |
---|
22 | if {${name} ne ${subport}} { |
---|
23 | depends_build-append port:py${python.version}-setuptools |
---|
24 | depends_run-append \ |
---|
25 | port:py${python.version}-requests-toolbelt \ |
---|
26 | port:py${python.version}-tqdm \ |
---|
27 | port:py${python.version}-pkginfo |
---|
28 | } |
---|