# -*- 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

name                py-conllu
version             4.5.3
revision            0

categories-append   textproc
platforms           {darwin any}
supported_archs     noarch
license             MIT
maintainers         nomaintainer

description         Convert a CoNLL-U string into a nested python dictionary.
long_description    CoNLL-U Parser parses a CoNLL-U formatted string \
                    into a nested python dictionary. CoNLL-U is often \
                    the output of natural language processing tasks.

homepage            https://github.com/EmilStenstrom/conllu

checksums           rmd160  6c5706dc200837469564c4eebe7f5103ce178efa \
                    sha256  a016cf77e203b2e3ace82fcf0cba2874530d1458e874521640eba36e19546acc \
                    size    32768

python.versions     39 310 311

if {${name} ne ${subport}} {
    post-destroot {
        set docdir ${prefix}/share/doc/${subport}
        xinstall -d ${destroot}${docdir}
        xinstall -m 0644 -W ${worksrcpath} README.md LICENSE \
            ${destroot}${docdir}
    }
}
