-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (28 loc) · 884 Bytes
/
setup.py
File metadata and controls
41 lines (28 loc) · 884 Bytes
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
from setuptools import setup
setup(
name='ts-docker',
packages=['ts_docker'],
version='1.2.0',
description='A Docker scanner for TrustSource (https://app.trustsource.io) to manage open source code compliance',
author='EACG GmbH',
license='Apache-2.0',
url='https://github.com/TrustSource/ts-docker.git',
download_url='',
keywords=['scanning', 'dependencies', 'modules', 'TrustSource', 'Docker'],
classifiers=[],
install_requires=[
'click',
'wasabi',
'docker',
'ts-python-client==1.3.0',
'ts-spdx-import @ git+https://github.com/TrustSource/ts-spdx-upload.git@1.2.0#egg=ts-spdx-import'
'setuptools'
],
scripts=['ts-docker'],
entry_points={
'console_scripts': ['ts-docker=ts_docker.cli:main'],
},
)
"""
provides a setup routine to install ts-docker cli
"""