Update to 0.0.4
This commit is contained in:
@@ -4,8 +4,7 @@ build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "huepaper"
|
||||
version = "0.0.3"
|
||||
dynamic = ["dependencies"]
|
||||
dynamic = ["version", "dependencies", "optional-dependencies"]
|
||||
authors = [{ name = "Denis Lehmann" }]
|
||||
maintainers = [{ name = "Profitroll" }]
|
||||
description = "A colorful wallpaper generator"
|
||||
@@ -34,14 +33,36 @@ Tracker = "https://git.end-play.xyz/profitroll/huepaper/issues"
|
||||
[project.scripts]
|
||||
huepaper = "huepaper.__main__:main"
|
||||
|
||||
[tool.setuptools]
|
||||
packages = ["huepaper"]
|
||||
|
||||
[tool.setuptools.dynamic]
|
||||
dependencies = { file = "requirements.txt" }
|
||||
version = { attr = "huepaper.__version__" }
|
||||
dependencies = { file = "requirements/_.txt" }
|
||||
|
||||
[tool.setuptools.dynamic.optional-dependencies]
|
||||
dev = { file = "requirements/dev.txt" }
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["src"]
|
||||
|
||||
[tool.black]
|
||||
target-version = ['py37', 'py38', 'py39', 'py310', 'py311']
|
||||
target-version = ['py38', 'py39', 'py310', 'py311']
|
||||
|
||||
[tool.isort]
|
||||
profile = "black"
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
minversion = "6.0"
|
||||
python_files = ["test_*.py"]
|
||||
pythonpath = "."
|
||||
testpaths = ["tests"]
|
||||
|
||||
[tool.mypy]
|
||||
namespace_packages = true
|
||||
install_types = true
|
||||
strict = true
|
||||
show_error_codes = true
|
||||
|
||||
[tool.pylint.main]
|
||||
py-version = 3.8
|
||||
|
||||
[tool.coverage.run]
|
||||
source = ["huepaper"]
|
||||
|
Reference in New Issue
Block a user