Project

General

Profile

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

hydrilla-builder / setup.cfg @ 456ad6c0

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
install_requires =
36
    click
37
    jsonschema
38
    importlib; python_version == "2.6"
39
 # reuse is optional:
40
 #    reuse
41

    
42
[options.extras_require]
43
test = pytest
44
setup = setuptools_scm
45

    
46
[options.packages.find]
47
where = src
48
exclude =
49
    test
50

    
51
[options.entry_points]
52
console_scripts =
53
    hydrilla-builder = hydrilla.builder.__main__:perform_build
(7-7/8)