blob: 18faa284a620737021c4553dbb1e2b314f528e40 (
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
|
#
# ~~~ dev-python/whitenoise
#
# ~~~ simple static file serving
#
#
# ~~~ metadata
# portage info
EAPI=8
SLOT=0
KEYWORDS="amd64"
IUSE="oscp"
# info
HOMEPAGE="https://whitenoise.readthedocs.io/"
DESCRIPTION="Simple static file serving for Python apps"
LICENSE="MIT"
# package data
SRC_URI="https://github.com/evansd/whitenoise/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
#
# ~~~ dependencies
# python setup
DISTUTILS_USE_PEP517="setuptools"
PYTHON_COMPAT=( python3_{10..14} )
inherit distutils-r1
|