-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
84 lines (76 loc) · 1.94 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pip-licenses-lib"
description = "Retrieve the software license list of Python packages installed with pip."
dynamic = ["version"]
license = {text = "MIT"}
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "raimon49"},
{name = "stefan6419846 (library version)"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
"Topic :: Utilities",
"Typing :: Typed",
]
keywords = [
"open source",
"license",
"package",
"dependency",
"licensing"
]
requires-python = ">=3.9, <4"
dependencies = [
]
[project.urls]
Homepage = "https://github.com/stefan6419846/pip-licenses-lib"
Documentation = "https://pip-licenses-lib.readthedocs.io"
Repository = "https://github.com/stefan6419846/pip-licenses-lib"
Issues = "https://github.com/stefan6419846/pip-licenses-lib/issues"
Changelog = "https://github.com/stefan6419846/pip-licenses-lib/blob/master/CHANGELOG.md"
[project.optional-dependencies]
dev = [
# Linting
"flake8",
"flake8-bugbear",
"pep8-naming",
"mypy",
"types-requests",
# Test code
"requests",
"pypdf",
# Spelling
"codespell",
]
docs = [
"sphinx",
"furo",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "piplicenses_lib.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = [
"piplicenses_lib",
"piplicenses_lib.*"
]
namespaces = false
[tool.mypy]
strict = true
files = "piplicenses_lib,tests"
[tool.codespell]
skip = './.git/*,./.mypy*,./venv*,./docs/_build/*,./docs/importlib.metadata-inv.txt,'
check-hidden = true
ignore-words-list = 'assertIn,'