Skip to content

Commit ee6f655

Browse files
committed
Fix scorecode package name
Signed-off-by: 404-geek <[email protected]>
1 parent c7a12ff commit ee6f655

File tree

2 files changed

+20
-18
lines changed

2 files changed

+20
-18
lines changed

CHANGELOG.rst

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,21 @@ Changelog
22
=========
33

44

5-
v0.0.0
6-
------
5+
v0.0.1 - 2024-08-23
6+
--------------------
7+
8+
Initial release of scorecode
9+
10+
- Abstract models to store data for a score and all it's checks
11+
Created models like PackageScore, ScorecardCheck for saving OSSF scorecard
12+
data.
13+
- Django mixins to be used in SCIO and purldb
14+
- Fetch Scorecard data for github and gitlab urls.
15+
- Add test scripts to check for different repos scorecard data.
16+
- Add files from Skeleton for packaging, CI and others.
17+
18+
v0.0.2 - 2024-08-23
19+
--------------------
20+
21+
Patch Release of scorecode to fix package name.
722

8-
*xxxx-xx-xx* -- Initial release.

setup.cfg

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[metadata]
2-
name = ScoreCode
3-
version = 0.0.1
2+
name = scorecode
3+
version = 0.0.2
44
license = Apache-2.0
55
description = A package to fetch data from OpenSSF Scorecard API
66
long_description = file:README.rst
77
author = nexB. Inc. and others
8-
url = https://github.com/aboutcode-org/ScoreCode
8+
url = https://github.com/aboutcode-org/scorecode
99
classifiers =
1010
Development Status :: 4 - Beta
1111
Intended Audience :: Developers
@@ -47,8 +47,6 @@ install_requires =
4747
commoncode
4848
attrs >= 23.2.0
4949
urllib3 >= 2.2.2
50-
click >= 6.7, !=7.0
51-
packageurl_python >= 0.13.4
5250
requests >= 2.7.0
5351

5452
[options.packages.find]
@@ -72,23 +70,13 @@ testing =
7270
black >= 22.6.0
7371
pycodestyle >= 2.8.0
7472
twine
75-
vendorize >= 0.2.0
7673

7774
[isort]
7875
force_single_line = True
7976
line_length = 100
8077
known_django = django
8178
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
8279

83-
[mypy]
84-
python_version = 3.11
85-
86-
files = src/ossf_scorecard/__init__.py
87-
show_error_codes = True
88-
pretty = True
89-
90-
strict = True
91-
9280
[tool:pytest]
9381
norecursedirs =
9482
.git

0 commit comments

Comments
 (0)