Project

General

Profile

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

hydrilla-builder / setup.cfg @ 16eaeb86

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
version = 0.999
10
author = Wojtek Kosior
11
author_email = koszko@koszko.org
12
description = Hydrilla package builder
13
long_description = file: README.md
14
long_description_content_type = text/markdown
15
url = https://git.koszko.org/hydrilla-builder
16
project_urls =
17
    Bug Tracker = https://hydrillabugs.koszko.org/projects/hydrilla
18
keywords = hydrilla, haketilo
19
license = AGPL-3.0-or-later
20
classifiers =
21
    Development Status :: 4 - Beta
22
    Intended Audience :: Developers
23
    Environment :: Console
24
    License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
25
    Natural Language :: English
26
    Operating System :: OS Independent
27
    Programming Language :: Python :: 3 :: Only
28
    Topic :: Software Development :: Build Tools
29

    
30
[options]
31
zip_safe = False
32
package_dir =
33
    = src
34
packages = find:
35
include_package_data=True
36
install_requires =
37
    click
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)