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