Project

General

Profile

Download (2.03 KB) Statistics
| Branch: | Tag: | Revision:

hydrilla-builder / setup.cfg @ master

1
# 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
name = hydrilla.builder
9
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
packages = find_namespace:
34
include_package_data=True
35
python_requires = >= 3.7
36
install_requires =
37
    click
38
    jsonschema>=3.0
39

    
40
[options.package_data]
41
hydrilla.builder = locales/*/LC_MESSAGES/hydrilla-messages.mo
42

    
43
[options.extras_require]
44
test = pytest
45
setup = setuptools_scm; babel
46
SPDX = reuse
47

    
48
[options.packages.find]
49
where = src
50
exclude =
51
    test
52

    
53
[options.entry_points]
54
console_scripts =
55
    hydrilla-builder = hydrilla.builder.build:perform
56

    
57
[extract_messages]
58
keywords = _
59
width = 80
60
input_dirs = src/hydrilla
61
output_file = src/hydrilla/builder/locales/hydrilla-messages.pot
62
msgid_bugs_address = koszko@koszko.org
63
sort_by_file = True
64
copyright_holder = Wojtek Kosior <koszko@koszko.org>
65

    
66
[init_catalog]
67
input_file = src/hydrilla/builder/locales/hydrilla-messages.pot
68
output_dir = src/hydrilla/builder/locales/
69
domain = hydrilla-messages
70

    
71
[update_catalog]
72
input_file = src/hydrilla/builder/locales/hydrilla-messages.pot
73
output_dir = src/hydrilla/builder/locales/
74
domain = hydrilla-messages
75

    
76
[compile_catalog]
77
directory = src/hydrilla/builder/locales
78
use_fuzzy = True
79
domain = hydrilla-messages
(8-8/9)