generated from aboutcode-org/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
110 lines (103 loc) · 2.13 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[metadata]
name = scorecode
version = 0.0.3
license = Apache-2.0
description = A package to fetch data from OpenSSF Scorecard API
long_description = file:README.rst
author = nexB. Inc. and others
url = https://github.com/aboutcode-org/scorecode
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries
Topic :: Utilities
Typing :: Typed
keywords =
Scorecard
ScoreCode
OpenSSF
OSSF
Vulnerablity Analysis
license_files =
LICENSE
- AUTHORS.rst
- README.rst
- CONTRIBUTING.rst
- CHANGELOG.rst
- apache-2.0.LICENSE
[options]
python_requires = >=3.8
packages = find:
package_dir =
=src
include_package_data = true
zip_safe = false
setup_requires = setuptools_scm[toml] >= 4
install_requires =
commoncode
attrs >= 23.2.0
urllib3 >= 2.2.2
requests >= 2.7.0
[options.packages.find]
where = src
[options.extras_require]
docs =
Sphinx>=5.0.2
sphinx-rtd-theme>=1.0.0
sphinx-reredirects >= 0.1.2
doc8>=0.11.2
sphinx-autobuild
sphinx-rtd-dark-mode>=1.3.0
sphinx-copybutton
testing =
pytest >= 6, != 7.0.0
pytest-rerunfailures
pytest-xdist >= 2
isort
black >= 22.6.0
pycodestyle >= 2.8.0
twine
[isort]
force_single_line = True
line_length = 100
known_django = django
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[tool:pytest]
norecursedirs =
.git
tmp
dist
build
_build
local
ci
docs
man
share
samples
.cache
.settings
Include
include
Lib
lib
Scripts
thirdparty
tmp
src/ossf_scorecard/contrib
python_files = *.py
python_classes=Test
python_functions=test
addopts =
-rfExXw
--strict-markers
--ignore setup.py
--doctest-modules