Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bsweger/misc fixes #10

Merged
merged 3 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = 'python-app'
description = 'Python application template for personal use'
license = {text = 'MIT License'}
readme = 'README.md'
requires-python = '>=3.11'
requires-python = '>=3.9'
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
Expand All @@ -22,9 +22,13 @@ dev = [
'mypy',
'pre-commit',
'pytest',
"pytest-random-order>=1.1.1",
'ruff',
]

[project.urls]
Repository = "https://github.com/bsweger/python-app-template.git"

[project.entry-points.'console_scripts']
hello_world = 'hello_world.app:main'

Expand All @@ -39,6 +43,13 @@ packages = ['hello_world']
# to write json-formatted logs to disk, uncomment the following line specify the file location
# log_file = '/path/to/logs/files/hello_world.log'

[tool.pytest.ini_options]
addopts = "--random-order"
tmp_path_retention_policy = "none"
testpaths = [
"tests",
]

[tool.ruff]
line-length = 120
lint.extend-select = ['I', 'Q']
Expand Down
Loading