cli: explicitly list clan_cli package

This commit is contained in:
Jörg Thalheim
2023-07-28 10:52:13 +02:00
committed by Mic92
parent 7c51ef3fb6
commit 282307ca2a

View File

@@ -1,12 +1,15 @@
[build-system] [build-system]
requires = ["setuptools"] requires = [ "setuptools" ]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[project] [project]
name = "clan" name = "clan"
description = "cLAN CLI tool" description = "cLAN CLI tool"
dynamic = ["version"] dynamic = [ "version" ]
scripts = {clan = "clan_cli:main"} scripts = { clan = "clan_cli:main" }
[tool.setuptools]
packages = [ "clan_cli" ]
[tool.pytest.ini_options] [tool.pytest.ini_options]
addopts = "--cov . --cov-report term --cov-report html:.reports/html --no-cov-on-fail" addopts = "--cov . --cov-report term --cov-report html:.reports/html --no-cov-on-fail"
@@ -33,13 +36,13 @@ ignore_missing_imports = true
[tool.ruff] [tool.ruff]
line-length = 88 line-length = 88
select = ["E", "F", "I"] select = [ "E", "F", "I" ]
ignore = [ "E501" ] ignore = [ "E501" ]
[tool.black] [tool.black]
line-length = 88 line-length = 88
target-version = ['py310'] target-version = [ "py310" ]
include = '\.pyi?$' include = "\\.pyi?$"
exclude = ''' exclude = '''
/( /(
\.git \.git