From 786e2f0381616a88b7411d61ff13ccb8c5563cfc Mon Sep 17 00:00:00 2001 From: Daniele Scasciafratte Date: Tue, 17 Oct 2023 18:34:13 +0200 Subject: [PATCH] feat(gitlab): readme updated --- README.md | 7 ++++++- setup.py | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f180195..731f1bb 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,12 @@ # GitHosting License [![License](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0) -This script scans every repo of a user (on GitHub/Bitbucket/GitLab or other providers available) for a license file, downloads a license to the project folder, adds a license badge in the readme of the project and include git hooks to check if your project has one. +This script scans every repo of a user (on GitHub/Bitbucket/GitLab or other providers available) for: + +* Check if include a license file +* Download a license to the project folder (automatically execute a `git commit`) +* Adds a license badge in the readme (automatically execute a `git commit`) +* Include git hooks to check if your project has one. Remember, without a license file your project is proprietary even if it is online! diff --git a/setup.py b/setup.py index 886df43..5322c27 100755 --- a/setup.py +++ b/setup.py @@ -9,14 +9,14 @@ setup( name="gh-license", - version="0.2.9", + version="0.3.0", author="Mte90", author_email="mte90net@gmail.com", url="https://github.com/Mte90/GH-License", install_requires=open(os.path.join(BASE_DIR, "requirements.txt")).readlines(), license="GPLv3", description="Scan github, bitbucket or other providers repositories for missing license files and add them", - download_url='https://github.com/Mte90/GH-License/tarball/0.2.9', + download_url='https://github.com/Mte90/GH-License/tarball/0.3.0', package_data={"ghlicense": ["*.json"]}, packages=find_packages(exclude=["setup", "setup.*"]), entry_points={