forked from aboutcode-org/python-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
94 lines (81 loc) · 1.92 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
[metadata]
name = python-inspector
license = Apache-2.0
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
description = python-inspector is is a collection of utilities to collect PyPI package metadata and resolve packages dependencies.
long_description = file:README.rst
long_description_content_type = text/x-rst
url = https://github.com/nexB/python-inspector
author = nexB. Inc. and others
author_email = [email protected]
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
Topic :: Utilities
keywords =
open source
scan
package
dependency
pypi
python
SBOM
sca
dependencies
dependency resolution
resolver
resolvelib
pip
requirements
license_files =
apache-2.0.LICENSE
NOTICE
AUTHORS.rst
CHANGELOG.rst
CODE_OF_CONDUCT.rst
[options]
package_dir =
=src
packages = find:
include_package_data = true
zip_safe = false
setup_requires = setuptools_scm[toml] >= 4
python_requires = >=3.7
install_requires =
attrs >= 18.1, !=20.1.0
click > 7.0
colorama >= 0.3.9
commoncode >= 30.0.0
dparse2 >= 0.7.0
importlib_metadata >= 4.12.0
packageurl_python >= 0.9.0
pkginfo2 >= 30.0.0
pip-requirements-parser >= 32.0.1
requests >= 2.18.0
resolvelib >= 1.0.0
saneyaml >= 0.5.2
toml >= 0.10.0
mock >= 3.0.5
packvers >= 21.5
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
python-inspector = python_inspector.resolve_cli:resolve_dependencies
[options.extras_require]
testing =
pytest >= 6, != 7.0.0
pytest-xdist >= 2
aboutcode-toolkit >= 7.0.2
pycodestyle >= 2.8.0
twine
black
isort
docs =
Sphinx>=5.0.2
sphinx-rtd-theme>=1.0.0
sphinx-reredirects >= 0.1.2
doc8>=0.11.2