forked from aboutcode-org/scancode.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·104 lines (98 loc) · 3.5 KB
/
setup.py
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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# SPDX-License-Identifier: Apache-2.0
#
# http://nexb.com and https://github.com/nexB/scancode.io
# The ScanCode.io software is licensed under the Apache License version 2.0.
# Data generated with ScanCode.io is provided as-is without warranties.
# ScanCode is a trademark of nexB Inc.
#
# You may not use this software except in compliance with the License.
# You may obtain a copy of the License at: http://apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software distributed
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the License.
#
# Data Generated with ScanCode.io is provided on an "AS IS" BASIS, WITHOUT WARRANTIES
# OR CONDITIONS OF ANY KIND, either express or implied. No content created from
# ScanCode.io should be considered or used as legal advice. Consult an Attorney
# for any legal advice.
#
# ScanCode.io is a free software code scanning tool from nexB Inc. and others.
# Visit https://github.com/nexB/scancode.io for support and download.
from setuptools import find_packages
from setuptools import setup
__version__ = "21.5.12"
requirement_files = ["etc/requirements/base.txt"]
all_requirements = [
r.strip()
for req_file in requirement_files
for r in open(req_file).readlines()
if r.strip() and not r.strip().startswith("#")
]
setup(
name="scancodeio",
version=__version__,
license="Apache-2.0",
description="ScanCode.io",
long_description="ScanCode.io",
author="nexB Inc.",
author_email="[email protected]",
url="https://github.com/nexB/scancode.io",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires=">= 3.6",
install_requires=all_requirements,
entry_points={
"console_scripts": [
"scanpipe = scancodeio:command_line",
],
"scancodeio_pipelines": [
"docker = scanpipe.pipelines.docker:Docker",
"load_inventory = scanpipe.pipelines.load_inventory:LoadInventory",
"root_filesystems = scanpipe.pipelines.root_filesystems:RootFS",
"scan_codebase = scanpipe.pipelines.scan_codebase:ScanCodebase",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Legal Industry",
"Framework :: Django",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"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",
],
)