Project

General

Profile

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

hydrilla-builder / setup.cfg @ debian-debian

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_namespace:
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; babel
40
spdx = reuse
41

    
42
[options.packages.find]
43
where = src
44
exclude = 
45
	test
46

    
47
[options.entry_points]
48
console_scripts = 
49
	hydrilla-builder = hydrilla.builder.build:perform
50

    
51
[extract_messages]
52
keywords = _
53
width = 80
54
input_dirs = src/hydrilla
55
output_file = src/hydrilla/builder/locales/hydrilla-messages.pot
56
msgid_bugs_address = koszko@koszko.org
57
sort_by_file = True
58
copyright_holder = Wojtek Kosior <koszko@koszko.org>
59

    
60
[init_catalog]
61
input_file = src/hydrilla/builder/locales/hydrilla-messages.pot
62
output_dir = src/hydrilla/builder/locales/
63
domain = hydrilla-messages
64

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

    
70
[compile_catalog]
71
directory = src/hydrilla/builder/locales
72
use_fuzzy = True
73
domain = hydrilla-messages
74

    
75
[egg_info]
76
tag_build = 
77
tag_date = 0
78

    
(7-7/8)