-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (54 loc) · 1.55 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright (c) 2022 Joseph Hale
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
[tool.poetry]
name = "git-authorship"
version = "0.1.5"
description = "Interactive reports showing who wrote each line of code in your git repository."
authors = ["Joseph Hale <[email protected]>"]
license = "MPL-2.0"
readme = "README.md"
homepage = "https://github.com/thehale/git-authorship"
repository = "https://github.com/thehale/git-authorship"
documentation = "https://github.com/thehale/git-authorship"
keywords = [ "git", "blame", "authorship", "copyright", "relicensing", "SPDX", "SBOM" ]
[tool.poetry.scripts]
git-authorship = "git_authorship.cli:main"
[tool.poetry.dependencies]
python = "^3.8"
GitPython = "^3.1.43"
plotly = "^5.24.1"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
mypy = "^1.13"
pre-commit = "^3.5.0"
pytest = "^8.3.3"
liccheck = "^0.9.2"
pytest-snapshot = "^0.9.0"
[tool.liccheck]
authorized_licenses = [
"MIT",
"Apache-2.0",
"Apache Software",
"Apache License, Version 2.0",
"Apache License 2.0",
"BSD",
"BSD-2-Clause",
"BSD-3-Clause",
"LGPL-2.1",
"LGPL-3.0",
"MPL-2.0",
"Mozilla Public License 2.0 (MPL 2.0)",
"Unlicense"
]
unauthorized_licenses = [
"GPL",
"GNU General Public License v2 (GPLv2)"
]
[tool.liccheck.authorized_packages]
# None right now.
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"