Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,21 @@ Changelog
=========


v0.0.0
------
v0.0.1 - 2024-08-23
--------------------

Initial release of scorecode

- Abstract models to store data for a score and all it's checks
Created models like PackageScore, ScorecardCheck for saving OSSF scorecard
data.
- Django mixins to be used in SCIO and purldb
- Fetch Scorecard data for github and gitlab urls.
- Add test scripts to check for different repos scorecard data.
- Add files from Skeleton for packaging, CI and others.

v0.0.2 - 2024-08-23
--------------------

Patch Release of scorecode to fix package name.

*xxxx-xx-xx* -- Initial release.
18 changes: 3 additions & 15 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[metadata]
name = ScoreCode
version = 0.0.1
name = scorecode
version = 0.0.2
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
url = https://github.com/aboutcode-org/scorecode
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Expand Down Expand Up @@ -47,8 +47,6 @@ install_requires =
commoncode
attrs >= 23.2.0
urllib3 >= 2.2.2
click >= 6.7, !=7.0
packageurl_python >= 0.13.4
requests >= 2.7.0

[options.packages.find]
Expand All @@ -72,23 +70,13 @@ testing =
black >= 22.6.0
pycodestyle >= 2.8.0
twine
vendorize >= 0.2.0

[isort]
force_single_line = True
line_length = 100
known_django = django
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER

[mypy]
python_version = 3.11

files = src/ossf_scorecard/__init__.py
show_error_codes = True
pretty = True

strict = True

[tool:pytest]
norecursedirs =
.git
Expand Down
Loading