forked from TrustSource/ts-deepscan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1019 Bytes
/
setup.py
File metadata and controls
38 lines (37 loc) · 1019 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
from setuptools import setup
setup(
name='ts-deepscan',
python_requires='>3.6',
packages=[
'ts_deepscan',
'ts_deepscan.analyser',
'ts_deepscan.commentparser',
'ts_deepscan.scanner',
'ts_deepscan.scancode',
'ts_deepscan.scancode.cluecode',
],
version='1.0.3',
description='Repository scanner for the identification of effective licenses and copyright information.',
author='EACG GmbH',
license='Apache 2.0',
url='https://github.com/TrustSource/ts-deepscan.git',
download_url='',
keywords=['DeepScan', 'TrustSource'],
classifiers=[],
install_requires=[
'six',
'spacy>=2.2.0,<3.0.0',
'nltk',
'text-unidecode',
'requests',
'progress',
'click>=8.0.3',
'osadl_matrix',
'ts-python-client>=1.2.0'
],
scripts=['ts-deepscan'],
entry_points={
'console_scripts': ['ts-deepscan=ts_deepscan.cli:cli'],
},
include_package_data=True
)