forked from tern-tools/tern
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
62 lines (57 loc) · 2.23 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2019-2020 VMware, Inc. All Rights Reserved.
# SPDX-License-Identifier: BSD-2-Clause
[metadata]
name = tern
author = VMware Inc
author_email = [email protected]
summary = An inspection tool to find the OSS compliance metadata of the packages installed in a container image.
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
home_page = https://github.com/tern-tools/tern/
project_urls =
Documentation = https://github.com/tern-tools/tern/tree/master/docs
Source Code = https://github.com/tern-tools/tern
Issues = https://github.com/tern-tools/tern/issues
license = BSD-2.0
keywords =
Distribution
Container
Cloud-Native
classifier =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: POSIX
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development
[files]
packages =
tern
[options]
include_package_data = True
[entry_points]
tern.formats =
default = tern.formats.default.generator:Default
spdxtagvalue = tern.formats.spdx.spdxtagvalue.generator:SpdxTagValue
spdxjson = tern.formats.spdx.spdxjson.generator:SpdxJSON
spdxjsonc = tern.formats.spdx.spdxjson.consumer:SpdxJSON
json = tern.formats.json.generator:JSON
jsonc = tern.formats.json.consumer:JSON
yaml = tern.formats.yaml.generator:YAML
html = tern.formats.html.generator:HTML
cyclonedxjson = tern.formats.cyclonedx.cyclonedxjson.generator:CycloneDXJSON
tern.extensions =
cve_bin_tool = tern.extensions.cve_bin_tool.executor:CveBinTool
scancode = tern.extensions.scancode.executor:Scancode
console_scripts =
tern = tern.__main__:main
[options.extras_require]
dev = bandit>=1.6; prospector>=1.5.1; tox>=3.14