-
Notifications
You must be signed in to change notification settings - Fork 88
/
setup.cfg
165 lines (158 loc) · 4.84 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
[metadata]
name = scancodeio
version = 34.9.0
license = Apache-2.0
description = Automate software composition analysis pipelines
long_description = file:README.rst
author = nexB Inc.
author_email = [email protected]
url = https://github.com/aboutcode-org/scancode.io
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: Legal Industry
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Utilities
keywords =
open source
scan
license
package
dependency
copyright
filetype
author
extract
licensing
scancode
scanpipe
docker
rootfs
vm
virtual machine
pipeline
code analysis
container
license_files =
LICENSE
NOTICE
scan.NOTICE
[options]
python_requires = >=3.10
packages=find:
include_package_data = true
zip_safe = false
install_requires =
importlib-metadata==8.5.0
setuptools==72.1.0
# Django related
Django==5.1.3
django-environ==0.11.2
django-crispy-forms==2.3
crispy-bootstrap3==2024.1
django-filter==24.3
djangorestframework==3.15.2
django-taggit==6.1.0
# Database
psycopg[binary]==3.2.3
# wait_for_database Django management command
django-probes==1.7.0
# Task queue
rq==2.0.0
django-rq==3.0.0
redis==5.2.0
# WSGI server
gunicorn==23.0.0
# Docker
container-inspector==33.0.0
# ScanCode-toolkit
scancode-toolkit[packages]==32.3.0
extractcode[full]==31.0.0
commoncode==32.0.0
packageurl-python==0.16.0
# FetchCode
fetchcode-container==1.2.3.210512; sys_platform == "linux"
# Inspectors
elf-inspector==0.0.1
go-inspector==0.5.0
python-inspector==0.12.1
source-inspector==0.5.1; sys_platform != "darwin" and platform_machine != "arm64"
aboutcode-toolkit==11.0.0
# Utilities
XlsxWriter==3.2.0
openpyxl==3.1.5
requests==2.32.3
gitpython==3.1.43
# Profiling
pyinstrument==5.0.0
# CycloneDX
cyclonedx-python-lib==8.4.0
jsonschema==4.23.0
# Font Awesome
fontawesomefree==6.6.0
# MatchCode-toolkit
matchcode-toolkit==5.1.0
# Univers
univers==30.12.1
# Markdown
markdown-it-py==3.0.0
bleach==6.2.0
# Antivirus
clamd==1.0.2
# FederatedCode
aboutcode.hashid==0.1.0
[options.extras_require]
dev =
# Validation
ruff==0.7.2
doc8==1.1.2
# Debug
django-debug-toolbar==4.4.6
# Documentation
Sphinx==8.1.3
sphinx-rtd-theme==3.0.1
sphinx-rtd-dark-mode==1.3.0
sphinxcontrib-django==2.5
# Release
bumpver==2023.1129
android_analysis =
android_inspector==0.0.1
[options.entry_points]
console_scripts =
scanpipe = scancodeio:command_line
run = scancodeio:combined_run
scancodeio_pipelines =
analyze_docker_image = scanpipe.pipelines.docker:Docker
analyze_root_filesystem_or_vm_image = scanpipe.pipelines.root_filesystem:RootFS
analyze_windows_docker_image = scanpipe.pipelines.docker_windows:DockerWindows
collect_strings_gettext = scanpipe.pipelines.collect_strings_gettext:CollectStringsGettext
collect_symbols_ctags = scanpipe.pipelines.collect_symbols_ctags:CollectSymbolsCtags
collect_symbols_pygments = scanpipe.pipelines.collect_symbols_pygments:CollectSymbolsPygments
collect_symbols_tree_sitter = scanpipe.pipelines.collect_symbols_tree_sitter:CollectSymbolsTreeSitter
enrich_with_purldb = scanpipe.pipelines.enrich_with_purldb:EnrichWithPurlDB
find_vulnerabilities = scanpipe.pipelines.find_vulnerabilities:FindVulnerabilities
inspect_elf_binaries = scanpipe.pipelines.inspect_elf_binaries:InspectELFBinaries
inspect_packages = scanpipe.pipelines.inspect_packages:InspectPackages
load_inventory = scanpipe.pipelines.load_inventory:LoadInventory
load_sbom = scanpipe.pipelines.load_sbom:LoadSBOM
map_deploy_to_develop = scanpipe.pipelines.deploy_to_develop:DeployToDevelop
match_to_matchcode = scanpipe.pipelines.match_to_matchcode:MatchToMatchCode
populate_purldb = scanpipe.pipelines.populate_purldb:PopulatePurlDB
publish_to_federatedcode = scanpipe.pipelines.publish_to_federatedcode:PublishToFederatedCode
resolve_dependencies = scanpipe.pipelines.resolve_dependencies:ResolveDependencies
scan_codebase = scanpipe.pipelines.scan_codebase:ScanCodebase
scan_for_virus = scanpipe.pipelines.scan_for_virus:ScanForVirus
scan_single_package = scanpipe.pipelines.scan_single_package:ScanSinglePackage
[bumpver]
version_pattern = "MAJOR.MINOR.PATCH"
current_version = "34.9.0"
[bumpver:file_patterns]
setup.cfg =
version = {version}
current_version = "{version}"
scancodeio/__init__.py = {version}