Check if python file contain copyright text
Project description
flake8-copyright-validator
Flake8 plugin for validating copyright text in python files.
Installation
pip install flake8-copyright-validator
How to use
In your config file like setup.cfg under flake8 specify copyright-text wrapping every string with '.
[flake8]
copyright-text = 'Example copyright text'
Available flags
--updateIf difference or lack of copyright was found in file writes copyright text at the beginning of python file.
If specified, value of bytes-to-read is ignored. Careful with this option if your header is incorrect it will add one more on top of wrong header.--bytes-to-readIf your copyright takes more than 2048 bytes or you want to load less text specify this value--detailed-outputProvides detailed output with flake8 error--lines-to-excludeFiles with first line containing value from lines to exclude will not be checked for copyright.
Lines to exclude is not a comma separated list. It's a text that is split by end of line (\n).--symbols-to-replaceYou can wrap your copyright text with symbols, by default it is', it is used for specifying
copyright text that starts with#. You can change it if you don't need it with this flag. It is comma separated list.
How it works
Plugin splits copyright text by end of line (\n), and reads 2048 bytes of file by default.
If differences were found it yields NCF100 No copyright found.
Plugin does not use comma separated lists for text
Complete example of setup.cfg
[flake8]
lines-to-exclude =
'# Generated by Django'
'#!'
copyright-text =
'# Example - Example'
'# Copyright (C) Example'
'#'
'# This program is free software: you can redistribute it and/or modify'
'# it under the terms of the GNU Affero General Public License as published'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file flake8-copyright-validator-0.0.1.tar.gz.
File metadata
- Download URL: flake8-copyright-validator-0.0.1.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb2ae6d3e9158b52d099362042c8d116c38d4b34ab59a85db024b36c6cb437d8
|
|
| MD5 |
3e6019d33c36fbf68ae5b20494feccdd
|
|
| BLAKE2b-256 |
544d4c01d9f13ff394e3d4e3fbeb1f8e67e4168eb45dabae48a61fbfe93457f1
|
File details
Details for the file flake8_copyright_validator-0.0.1-py3-none-any.whl.
File metadata
- Download URL: flake8_copyright_validator-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aeb2cf1ad347f353021ba66e46080d9c187842f7d24060c3f7ab29338a97aeb9
|
|
| MD5 |
f45acd3ac568b06cc1b876b73370fde3
|
|
| BLAKE2b-256 |
dbbd90c901fa521c20bc592cc29e5f9d6360a6c571de56d2863171d4e1f46784
|