blob: 220d8fe8a0403bc4733ce0d2800c172592957297 (
about) (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# SPDX-License-Identifier: CC0-1.0
# Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org>
#
# Available under the terms of Creative Commons Zero v1.0 Universal.
[metadata]
name = koszko_org_website
author = Wojtek Kosior
author_email = koszko@koszko.org
description = koszko.org website
long_description = file: README.md
long_description_content_type = text/markdown
url = https://git.koszko.org/koszko-org-website
keywords = koszko.org
license = CC0-1.0
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Environment :: Web Environment
Topic :: Internet :: WWW/HTTP :: WSGI
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Natural Language :: English
Natural Language :: Polish
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Private :: Do Not Upload
[options]
zip_safe = False
package_dir =
= src
packages = find_namespace:
include_package_data=True
python_requires = >= 3.7
install_requires =
flask>=1.1
[options.package_data]
koszko_org_website =
locales/*/LC_MESSAGES/messages.mo
py.typed
**/*.jinja
[options.packages.find]
where = src
[extract_messages]
mapping_file = babel.cfg
keywords = _ f_
add_comments = TRANSLATORS:
width = 80
input_dirs = src/koszko_org_website
output_file = src/koszko_org_website/locales/messages.pot
msgid_bugs_address = koszko@koszko.org
sort_by_file = True
copyright_holder = Wojtek Kosior <koszko@koszko.org>
[init_catalog]
input_file = src/koszko_org_website/locales/messages.pot
output_dir = src/koszko_org_website/locales/
domain = messages
[update_catalog]
input_file = src/koszko_org_website/locales/messages.pot
output_dir = src/koszko_org_website/locales/
domain = messages
[compile_catalog]
directory = src/koszko_org_website/locales
use_fuzzy = True
domain = messages
|