Project

General

Profile

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

hydrilla-builder / setup.cfg @ 0fe371da

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:
34
include_package_data=True
35
python_requires = >= 3.7
36
install_requires =
37
    click
38
    jsonschema>=3.0
39
 # reuse is optional:
40
 #    reuse
41

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

    
45
[options.extras_require]
46
test = pytest
47
setup = setuptools_scm
48

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

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

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

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

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

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