blob: 059b4ff949690fef682beb90a089a300de0f84a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
SUMMARY = "Object-oriented filesystem paths"
DESCRIPTION = "pathlib offers a set of classes to handle filesystem paths. \
It offers the following advantages over using string objects: \
- No more cumbersome use of os and os.path functions. \
- Embodies the semantics of different path types. \
- Well-defined semantics, eliminating any warts or ambiguities. \
"
HOMEPAGE = "https://pypi.python.org/pypi/pathlib"
SECTION = "devel/python"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b6557c860f0fc867aeab30afd649753"
SRC_URI[md5sum] = "5099ed48be9b1ee29b31c82819240537"
SRC_URI[sha256sum] = "6940718dfc3eff4258203ad5021090933e5c04707d5ca8cc9e73c94a7894ea9f"
inherit setuptools3 pypi
DEPENDS += " \
${PYTHON_PN}-pip \
"
RDEPENDS_${PN} += " \
"
|