Add or change license headers for all files in a directory
Project description
licenseheaders
A tool to update, change or add license headers to all files of any of the supported types (see below) in or below some directory.
Usage
usage: licenseheaders [-h] [-V] [-v] [-d DIR] [-t TMPL] [-y YEARS] [-o OWNER]
[-n PROJECTNAME] [-u PROJECTURL] [--enc ENCODING]
[--safesubst]
Python license header updater
optional arguments:
-h, --help show this help message and exit
-V, --version show program's version number and exit
-v, --verbose increases log verbosity (can be specified multiple
times)
-d DIR, --dir DIR The directory to recursively process (default: .).
-b Backup all files that get modified to a copy with added extension .bak
-t TMPL, --tmpl TMPL Template name or file to use.
-y YEARS, --years YEARS
Year or year range to use.
-o OWNER, --owner OWNER
Name of copyright owner to use.
-n PROJECTNAME, --projname PROJECTNAME
Name of project to use.
-u PROJECTURL, --projurl PROJECTURL
Url of project to use.
--enc ENCODING Encoding of program files (default: utf-8)
--safesubst Do not raise error if template variables cannot be
substituted.
Known extensions: ['.java', '.scala', '.groovy', '.jape', '.js', '.sh', '.csh', '.py', '.pl', '.pl', '.py', '.xml', '.sql', '.c', '.cc', '.cpp', 'c++', '.h', '.hpp', '.rb', '.cs', '.vb', '.erl', '.src', '.config', '.schema']
If -t/--tmpl is specified, that header is added to (or existing header replaced for) all source files of known type
If -t/--tmpl is not specified byt -y/--years is specified, all years in existing header files
are replaced with the years specified
Examples:
# add a lgpl-v3 header and set the variables for year, owner, project and url to the given values
# process all files in the current directory and below
licenseheaders -t lgpl-v3 -y 2012-2014 -o ThisNiceCompany -n ProjectName -u http://the.projectname.com
# only update the year in all existing headers
# process all files in the current directory and below
licenseheaders -y 2012-2015
# only update the year in all existing headers, process the given directory
licenseheaders -y 2012-2015 -d /dir/where/to/start/
If licenseheaders is installed as a package (from pypi for instance), one can interact with it as a command line tool:
python -m licenseheaders -t lgpl3 -c "Eager Hacker"
or directly:
licenseheaders -t lgpl3 -c "Eager Hacker"
Installation
Download licenseheaders.py
from http://github.com/johann-petrak/licenseheaders
or :
pip install licenseheaders
Template names and files
This library comes with a number of predefined templates. If a template name is specified which when matched against all predefined template names matches exactly one as a substring, then that template is used. Otherwise the name is expected to be the path of file.
If a template does not contain any variables of the form ${varname}
it is used as is.
Otherwise the program will try to replace the variable from one of the following
sources:
- an environment variable with the same name but the prefix
LICENSE_HEADERS_
added - the command line option that can be used to set the variable (see usage)
Supported file types and how they are processed
java:
- extensions .java, .scala, .groovy, .jape, .js
- also used for Javascript
- only headers that use Java block comments are recognised as existing headers
- the template text will be wrapped in block comments
script:
- extensions .sh, .csh
perl:
- extension .pl
python:
- extension .py
xml:
- extension .xml
sql:
- extension .sql
c:
- extensions .c, .cc, .cpp, .c++, .h, .hpp
ruby:
- extension .rb
csharp:
- extension .cs
visualbasic:
- extension .vb
erlang:
- extensions .erl, .src, .config, .schema
License
Licensed under the term of MIT License
. See file LICENSE.txt.
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
File details
Details for the file licenseheaders-0.7.tar.gz
.
File metadata
- Download URL: licenseheaders-0.7.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbe8548510d9247509d57e329c2416b0b85f8e2f05fbe7636d093d63585b3672 |
|
MD5 | 1fca4303e9df9b0675ec738f9db4ea1e |
|
BLAKE2b-256 | d845017fb29d6bd6fcc33cd4d3edcac77a304d7a052b1044999484bb5730ca9c |
File details
Details for the file licenseheaders-0.7-py3-none-any.whl
.
File metadata
- Download URL: licenseheaders-0.7-py3-none-any.whl
- Upload date:
- Size: 22.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82896cf31e8942d3508342e97d3dc3105a7f9ebd05fe582d02c5c60fa332897f |
|
MD5 | 4bdf77ef40dd6c269e3e4b2322bd7365 |
|
BLAKE2b-256 | 6bde353c83e7c28668a9744df470c6ceb05aef466ae4bff7433a3cc7c09d8f36 |