1 |
5ac7ec33
|
Wojtek Kosior
|
# SPDX-License-Identifier: CC0-1.0
|
2 |
|
|
|
3 |
|
|
# Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org>
|
4 |
|
|
#
|
5 |
|
|
# Available under the terms of Creative Commons Zero v1.0 Universal.
|
6 |
|
|
|
7 |
|
|
[metadata]
|
8 |
16eaeb86
|
Wojtek Kosior
|
name = hydrilla.builder
|
9 |
5ac7ec33
|
Wojtek Kosior
|
author = Wojtek Kosior
|
10 |
|
|
author_email = koszko@koszko.org
|
11 |
|
|
description = Hydrilla package builder
|
12 |
|
|
long_description = file: README.md
|
13 |
|
|
long_description_content_type = text/markdown
|
14 |
|
|
url = https://git.koszko.org/hydrilla-builder
|
15 |
|
|
project_urls =
|
16 |
|
|
Bug Tracker = https://hydrillabugs.koszko.org/projects/hydrilla
|
17 |
|
|
keywords = hydrilla, haketilo
|
18 |
|
|
license = AGPL-3.0-or-later
|
19 |
|
|
classifiers =
|
20 |
|
|
Development Status :: 4 - Beta
|
21 |
|
|
Intended Audience :: Developers
|
22 |
|
|
Environment :: Console
|
23 |
|
|
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
24 |
|
|
Natural Language :: English
|
25 |
|
|
Operating System :: OS Independent
|
26 |
|
|
Programming Language :: Python :: 3 :: Only
|
27 |
|
|
Topic :: Software Development :: Build Tools
|
28 |
|
|
|
29 |
|
|
[options]
|
30 |
|
|
zip_safe = False
|
31 |
|
|
package_dir =
|
32 |
|
|
= src
|
33 |
01c1904a
|
Wojtek Kosior
|
packages = find_namespace:
|
34 |
5ac7ec33
|
Wojtek Kosior
|
include_package_data=True
|
35 |
143aed2d
|
Wojtek Kosior
|
python_requires = >= 3.7
|
36 |
5ac7ec33
|
Wojtek Kosior
|
install_requires =
|
37 |
|
|
click
|
38 |
143aed2d
|
Wojtek Kosior
|
jsonschema>=3.0
|
39 |
5ac7ec33
|
Wojtek Kosior
|
|
40 |
9e71d383
|
Wojtek Kosior
|
[options.package_data]
|
41 |
0fe371da
|
Wojtek Kosior
|
hydrilla.builder = locales/*/LC_MESSAGES/hydrilla-messages.mo
|
42 |
9e71d383
|
Wojtek Kosior
|
|
43 |
5ac7ec33
|
Wojtek Kosior
|
[options.extras_require]
|
44 |
089f0552
|
Wojtek Kosior
|
test = pytest
|
45 |
86770602
|
Wojtek Kosior
|
setup = setuptools_scm; babel
|
46 |
3c567084
|
Wojtek Kosior
|
SPDX = reuse
|
47 |
5ac7ec33
|
Wojtek Kosior
|
|
48 |
|
|
[options.packages.find]
|
49 |
|
|
where = src
|
50 |
|
|
exclude =
|
51 |
|
|
test
|
52 |
|
|
|
53 |
|
|
[options.entry_points]
|
54 |
|
|
console_scripts =
|
55 |
9e71d383
|
Wojtek Kosior
|
hydrilla-builder = hydrilla.builder.build:perform
|
56 |
|
|
|
57 |
|
|
[extract_messages]
|
58 |
|
|
keywords = _
|
59 |
|
|
width = 80
|
60 |
|
|
input_dirs = src/hydrilla
|
61 |
0fe371da
|
Wojtek Kosior
|
output_file = src/hydrilla/builder/locales/hydrilla-messages.pot
|
62 |
9e71d383
|
Wojtek Kosior
|
msgid_bugs_address = koszko@koszko.org
|
63 |
|
|
sort_by_file = True
|
64 |
|
|
copyright_holder = Wojtek Kosior <koszko@koszko.org>
|
65 |
|
|
|
66 |
|
|
[init_catalog]
|
67 |
0fe371da
|
Wojtek Kosior
|
input_file = src/hydrilla/builder/locales/hydrilla-messages.pot
|
68 |
33097569
|
Wojtek Kosior
|
output_dir = src/hydrilla/builder/locales/
|
69 |
0fe371da
|
Wojtek Kosior
|
domain = hydrilla-messages
|
70 |
9e71d383
|
Wojtek Kosior
|
|
71 |
|
|
[update_catalog]
|
72 |
0fe371da
|
Wojtek Kosior
|
input_file = src/hydrilla/builder/locales/hydrilla-messages.pot
|
73 |
33097569
|
Wojtek Kosior
|
output_dir = src/hydrilla/builder/locales/
|
74 |
0fe371da
|
Wojtek Kosior
|
domain = hydrilla-messages
|
75 |
9e71d383
|
Wojtek Kosior
|
|
76 |
|
|
[compile_catalog]
|
77 |
33097569
|
Wojtek Kosior
|
directory = src/hydrilla/builder/locales
|
78 |
9e71d383
|
Wojtek Kosior
|
use_fuzzy = True
|
79 |
0fe371da
|
Wojtek Kosior
|
domain = hydrilla-messages
|