-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.cfg
55 lines (49 loc) · 1.2 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
[metadata]
name = scanoss
version = attr: scanoss.__version__
author = SCANOSS
author_email = [email protected]
license = MIT
description = Simple Python library to leverage the SCANOSS APIs
long_description = file: PACKAGE.md
long_description_content_type = text/markdown
url = https://scanoss.com
project_urls =
Source = https://github.com/scanoss/scanoss.py
Tracker = https://github.com/scanoss/scanoss.py/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3
[options]
packages = find_namespace:
package_dir =
= src
include_package_data = True
python_requires = >=3.7
install_requires =
requests
crc32c>=2.2
binaryornot
progress
grpcio>1.42.0
protobuf>3.19.1
pypac
pyOpenSSL
google-api-core
importlib_resources
packageurl-python
pathspec
jsonschema
[options.extras_require]
fast_winnowing =
scanoss_winnowing>=0.5.0
[options.packages.find]
where = src
[options.package_data]
* = data/*.txt, data/*.json
[options.entry_points]
console_scripts =
scanoss-py = scanoss.cli:main